| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| userId | String? |
|
No | - |
| type | String? |
|
No | - |
| provider | String? |
|
No | - |
| providerAccountId | String? |
|
No | - |
| refresh_token | String? |
|
No | - |
| access_token | String? |
|
No | - |
| expires_at | BigInt? |
|
No | - |
| scope | String? |
|
No | - |
| id_token | String |
|
Yes | - |
| session_state | String? |
|
No | - |
Find zero or one Account
// Get one Account
const account = await prisma.account.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | AccountWhereUniqueInput | Yes |
Find first Account
// Get one Account
const account = await prisma.account.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | AccountWhereInput | No |
| orderBy | AccountOrderByWithRelationInput[] | AccountOrderByWithRelationInput | No |
| cursor | AccountWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | AccountScalarFieldEnum | AccountScalarFieldEnum[] | No |
Find zero or more Account
// Get all Account
const Account = await prisma.account.findMany()
// Get first 10 Account
const Account = await prisma.account.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | AccountWhereInput | No |
| orderBy | AccountOrderByWithRelationInput[] | AccountOrderByWithRelationInput | No |
| cursor | AccountWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | AccountScalarFieldEnum | AccountScalarFieldEnum[] | No |
Create one Account
// Create one Account
const Account = await prisma.account.create({
data: {
// ... data to create a Account
}
})
| Name | Type | Required |
|---|
Delete one Account
// Delete one Account
const Account = await prisma.account.delete({
where: {
// ... filter to delete one Account
}
})
| Name | Type | Required |
|---|---|---|
| where | AccountWhereUniqueInput | Yes |
Update one Account
// Update one Account
const account = await prisma.account.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | AccountUpdateInput | AccountUncheckedUpdateInput | Yes |
| where | AccountWhereUniqueInput | Yes |
Delete zero or more Account
// Delete a few Account
const { count } = await prisma.account.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | AccountWhereInput | No |
Update zero or one Account
const { count } = await prisma.account.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | AccountUpdateManyMutationInput | AccountUncheckedUpdateManyInput | Yes |
| where | AccountWhereInput | No |
Create or update one Account
// Update or create a Account
const account = await prisma.account.upsert({
create: {
// ... data to create a Account
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Account we want to update
}
})
| Name | Type | Required |
|---|
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| created_at | DateTime |
|
Yes | - |
| updated_at | DateTime |
|
Yes | - |
| vehicle_number | String |
|
Yes | - |
| ambulance_type | String? |
|
No | - |
| person | Int |
|
Yes | - |
| version | String |
|
Yes | - |
| organization | Int? |
|
No | - |
| equipment | String[] |
|
Yes | - |
| contact | Int? |
|
No | - |
| color | String? |
|
No | - |
| Contact | Contact? |
|
No | - |
| Organization | Organization? |
|
No | - |
| Person | Person |
|
Yes | - |
| Version | Version |
|
Yes | - |
Find zero or one Ambulance
// Get one Ambulance
const ambulance = await prisma.ambulance.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | AmbulanceWhereUniqueInput | Yes |
Find first Ambulance
// Get one Ambulance
const ambulance = await prisma.ambulance.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | AmbulanceWhereInput | No |
| orderBy | AmbulanceOrderByWithRelationInput[] | AmbulanceOrderByWithRelationInput | No |
| cursor | AmbulanceWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | AmbulanceScalarFieldEnum | AmbulanceScalarFieldEnum[] | No |
Find zero or more Ambulance
// Get all Ambulance
const Ambulance = await prisma.ambulance.findMany()
// Get first 10 Ambulance
const Ambulance = await prisma.ambulance.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | AmbulanceWhereInput | No |
| orderBy | AmbulanceOrderByWithRelationInput[] | AmbulanceOrderByWithRelationInput | No |
| cursor | AmbulanceWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | AmbulanceScalarFieldEnum | AmbulanceScalarFieldEnum[] | No |
Create one Ambulance
// Create one Ambulance
const Ambulance = await prisma.ambulance.create({
data: {
// ... data to create a Ambulance
}
})
| Name | Type | Required |
|---|---|---|
| data | AmbulanceCreateInput | AmbulanceUncheckedCreateInput | Yes |
Delete one Ambulance
// Delete one Ambulance
const Ambulance = await prisma.ambulance.delete({
where: {
// ... filter to delete one Ambulance
}
})
| Name | Type | Required |
|---|---|---|
| where | AmbulanceWhereUniqueInput | Yes |
Update one Ambulance
// Update one Ambulance
const ambulance = await prisma.ambulance.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | AmbulanceUpdateInput | AmbulanceUncheckedUpdateInput | Yes |
| where | AmbulanceWhereUniqueInput | Yes |
Delete zero or more Ambulance
// Delete a few Ambulance
const { count } = await prisma.ambulance.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | AmbulanceWhereInput | No |
Update zero or one Ambulance
const { count } = await prisma.ambulance.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | AmbulanceUpdateManyMutationInput | AmbulanceUncheckedUpdateManyInput | Yes |
| where | AmbulanceWhereInput | No |
Create or update one Ambulance
// Update or create a Ambulance
const ambulance = await prisma.ambulance.upsert({
create: {
// ... data to create a Ambulance
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Ambulance we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | AmbulanceWhereUniqueInput | Yes |
| create | AmbulanceCreateInput | AmbulanceUncheckedCreateInput | Yes |
| update | AmbulanceUpdateInput | AmbulanceUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| created_at | DateTime |
|
Yes | - |
| updated_at | DateTime |
|
Yes | - |
| established_at | DateTime |
|
Yes | - |
| version | String |
|
Yes | - |
| founder | Int |
|
Yes | - |
| contact | Int? |
|
No | - |
| title | String |
|
Yes | - |
| Contact_BloodCenter_contactToContact | Contact? |
|
No | - |
| Person | Person |
|
Yes | - |
| Version | Version |
|
Yes | - |
| BloodDonation | BloodDonation[] |
|
Yes | - |
| Contact_Contact_blood_centerToBloodCenter | Contact[] |
|
Yes | - |
Find zero or one BloodCenter
// Get one BloodCenter
const bloodCenter = await prisma.bloodCenter.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | BloodCenterWhereUniqueInput | Yes |
Find first BloodCenter
// Get one BloodCenter
const bloodCenter = await prisma.bloodCenter.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | BloodCenterWhereInput | No |
| orderBy | BloodCenterOrderByWithRelationInput[] | BloodCenterOrderByWithRelationInput | No |
| cursor | BloodCenterWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | BloodCenterScalarFieldEnum | BloodCenterScalarFieldEnum[] | No |
Find zero or more BloodCenter
// Get all BloodCenter
const BloodCenter = await prisma.bloodCenter.findMany()
// Get first 10 BloodCenter
const BloodCenter = await prisma.bloodCenter.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | BloodCenterWhereInput | No |
| orderBy | BloodCenterOrderByWithRelationInput[] | BloodCenterOrderByWithRelationInput | No |
| cursor | BloodCenterWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | BloodCenterScalarFieldEnum | BloodCenterScalarFieldEnum[] | No |
Create one BloodCenter
// Create one BloodCenter
const BloodCenter = await prisma.bloodCenter.create({
data: {
// ... data to create a BloodCenter
}
})
| Name | Type | Required |
|---|---|---|
| data | BloodCenterCreateInput | BloodCenterUncheckedCreateInput | Yes |
Delete one BloodCenter
// Delete one BloodCenter
const BloodCenter = await prisma.bloodCenter.delete({
where: {
// ... filter to delete one BloodCenter
}
})
| Name | Type | Required |
|---|---|---|
| where | BloodCenterWhereUniqueInput | Yes |
Update one BloodCenter
// Update one BloodCenter
const bloodCenter = await prisma.bloodCenter.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | BloodCenterUpdateInput | BloodCenterUncheckedUpdateInput | Yes |
| where | BloodCenterWhereUniqueInput | Yes |
Delete zero or more BloodCenter
// Delete a few BloodCenter
const { count } = await prisma.bloodCenter.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | BloodCenterWhereInput | No |
Update zero or one BloodCenter
const { count } = await prisma.bloodCenter.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | BloodCenterUpdateManyMutationInput | BloodCenterUncheckedUpdateManyInput | Yes |
| where | BloodCenterWhereInput | No |
Create or update one BloodCenter
// Update or create a BloodCenter
const bloodCenter = await prisma.bloodCenter.upsert({
create: {
// ... data to create a BloodCenter
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the BloodCenter we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | BloodCenterWhereUniqueInput | Yes |
| create | BloodCenterCreateInput | BloodCenterUncheckedCreateInput | Yes |
| update | BloodCenterUpdateInput | BloodCenterUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| donor_id | Int |
|
Yes | - |
| organization_id | Int |
|
Yes | - |
| amount | Int |
|
Yes | - |
| version | String |
|
Yes | - |
| donated_at | DateTime |
|
Yes | - |
| referred_by | String? |
|
No | - |
| test_done | Json? |
|
No | - |
| bags | String[] |
|
Yes | - |
| media_done | String? |
|
No | - |
| media_used | String? |
|
No | - |
| incubation | String? |
|
No | - |
| note | String? |
|
No | - |
| created_at | DateTime? |
|
No | - |
| updated_at | DateTime? |
|
No | - |
| cabin_no | String? |
|
No | - |
| reg_no | String? |
|
No | - |
| BloodCenter | BloodCenter |
|
Yes | - |
| Person | Person |
|
Yes | - |
| Version | Version |
|
Yes | - |
Find zero or one BloodDonation
// Get one BloodDonation
const bloodDonation = await prisma.bloodDonation.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | BloodDonationWhereUniqueInput | Yes |
Find first BloodDonation
// Get one BloodDonation
const bloodDonation = await prisma.bloodDonation.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | BloodDonationWhereInput | No |
| orderBy | BloodDonationOrderByWithRelationInput[] | BloodDonationOrderByWithRelationInput | No |
| cursor | BloodDonationWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | BloodDonationScalarFieldEnum | BloodDonationScalarFieldEnum[] | No |
Find zero or more BloodDonation
// Get all BloodDonation
const BloodDonation = await prisma.bloodDonation.findMany()
// Get first 10 BloodDonation
const BloodDonation = await prisma.bloodDonation.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | BloodDonationWhereInput | No |
| orderBy | BloodDonationOrderByWithRelationInput[] | BloodDonationOrderByWithRelationInput | No |
| cursor | BloodDonationWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | BloodDonationScalarFieldEnum | BloodDonationScalarFieldEnum[] | No |
Create one BloodDonation
// Create one BloodDonation
const BloodDonation = await prisma.bloodDonation.create({
data: {
// ... data to create a BloodDonation
}
})
| Name | Type | Required |
|---|---|---|
| data | BloodDonationCreateInput | BloodDonationUncheckedCreateInput | Yes |
Delete one BloodDonation
// Delete one BloodDonation
const BloodDonation = await prisma.bloodDonation.delete({
where: {
// ... filter to delete one BloodDonation
}
})
| Name | Type | Required |
|---|---|---|
| where | BloodDonationWhereUniqueInput | Yes |
Update one BloodDonation
// Update one BloodDonation
const bloodDonation = await prisma.bloodDonation.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | BloodDonationUpdateInput | BloodDonationUncheckedUpdateInput | Yes |
| where | BloodDonationWhereUniqueInput | Yes |
Delete zero or more BloodDonation
// Delete a few BloodDonation
const { count } = await prisma.bloodDonation.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | BloodDonationWhereInput | No |
Update zero or one BloodDonation
const { count } = await prisma.bloodDonation.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | BloodDonationUpdateManyMutationInput | BloodDonationUncheckedUpdateManyInput | Yes |
| where | BloodDonationWhereInput | No |
Create or update one BloodDonation
// Update or create a BloodDonation
const bloodDonation = await prisma.bloodDonation.upsert({
create: {
// ... data to create a BloodDonation
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the BloodDonation we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | BloodDonationWhereUniqueInput | Yes |
| create | BloodDonationCreateInput | BloodDonationUncheckedCreateInput | Yes |
| update | BloodDonationUpdateInput | BloodDonationUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| created_at | DateTime |
|
Yes | - |
| updated_at | DateTime |
|
Yes | - |
| name | String |
|
Yes | - |
| established_at | DateTime |
|
Yes | - |
| contact | Int |
|
Yes | - |
| version | String |
|
Yes | - |
| chairman | Int |
|
Yes | - |
| founder | Int |
|
Yes | - |
| vice_chairman | Int |
|
Yes | - |
| Person_Club_chairmanToPerson | Person |
|
Yes | - |
| Contact_Club_contactToContact | Contact |
|
Yes | - |
| Person_Club_founderToPerson | Person |
|
Yes | - |
| Version | Version |
|
Yes | - |
| Person_Club_vice_chairmanToPerson | Person |
|
Yes | - |
| Contact_Contact_clubToClub | Contact[] |
|
Yes | - |
| Member | Member[] |
|
Yes | - |
| Organization | Organization[] |
|
Yes | - |
Find zero or one Club
// Get one Club
const club = await prisma.club.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ClubWhereUniqueInput | Yes |
Find first Club
// Get one Club
const club = await prisma.club.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ClubWhereInput | No |
| orderBy | ClubOrderByWithRelationInput[] | ClubOrderByWithRelationInput | No |
| cursor | ClubWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ClubScalarFieldEnum | ClubScalarFieldEnum[] | No |
Find zero or more Club
// Get all Club
const Club = await prisma.club.findMany()
// Get first 10 Club
const Club = await prisma.club.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | ClubWhereInput | No |
| orderBy | ClubOrderByWithRelationInput[] | ClubOrderByWithRelationInput | No |
| cursor | ClubWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ClubScalarFieldEnum | ClubScalarFieldEnum[] | No |
Create one Club
// Create one Club
const Club = await prisma.club.create({
data: {
// ... data to create a Club
}
})
| Name | Type | Required |
|---|---|---|
| data | ClubCreateInput | ClubUncheckedCreateInput | Yes |
Delete one Club
// Delete one Club
const Club = await prisma.club.delete({
where: {
// ... filter to delete one Club
}
})
| Name | Type | Required |
|---|---|---|
| where | ClubWhereUniqueInput | Yes |
Update one Club
// Update one Club
const club = await prisma.club.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ClubUpdateInput | ClubUncheckedUpdateInput | Yes |
| where | ClubWhereUniqueInput | Yes |
Delete zero or more Club
// Delete a few Club
const { count } = await prisma.club.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ClubWhereInput | No |
Update zero or one Club
const { count } = await prisma.club.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ClubUpdateManyMutationInput | ClubUncheckedUpdateManyInput | Yes |
| where | ClubWhereInput | No |
Create or update one Club
// Update or create a Club
const club = await prisma.club.upsert({
create: {
// ... data to create a Club
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Club we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | ClubWhereUniqueInput | Yes |
| create | ClubCreateInput | ClubUncheckedCreateInput | Yes |
| update | ClubUpdateInput | ClubUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| created_at | DateTime |
|
Yes | - |
| updated_at | DateTime |
|
Yes | - |
| address_line | String |
|
Yes | - |
| address_line_1 | String? |
|
No | - |
| state | String |
|
Yes | - |
| city | String |
|
Yes | - |
| zip | String |
|
Yes | - |
| phone | String |
|
Yes | - |
| phone_1 | String? |
|
No | - |
| fax | String? |
|
No | - |
| String? |
|
No | - | |
| email_1 | String? |
|
No | - |
| website | String? |
|
No | - |
| social_media | Json? |
|
No | - |
| version | String |
|
Yes | - |
| country | String? |
|
No | - |
| person | Int? |
|
No | - |
| club | Int? |
|
No | - |
| blood_center | Int? |
|
No | - |
| donation | Int? |
|
No | - |
| hospital | Int? |
|
No | - |
| Ambulance | Ambulance[] |
|
Yes | - |
| BloodCenter_BloodCenter_contactToContact | BloodCenter[] |
|
Yes | - |
| Club_Club_contactToContact | Club[] |
|
Yes | - |
| BloodCenter_Contact_blood_centerToBloodCenter | BloodCenter? |
|
No | - |
| Club_Contact_clubToClub | Club? |
|
No | - |
| Country | Country? |
|
No | - |
| Donation | Donation? |
|
No | - |
| Hospital_Contact_hospitalToHospital | Hospital? |
|
No | - |
| Person_Contact_personToPerson | Person? |
|
No | - |
| Version | Version |
|
Yes | - |
| Hospital_Hospital_contactToContact | Hospital[] |
|
Yes | - |
| Person_Person_contact_idToContact | Person[] |
|
Yes | - |
Find zero or one Contact
// Get one Contact
const contact = await prisma.contact.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ContactWhereUniqueInput | Yes |
Find first Contact
// Get one Contact
const contact = await prisma.contact.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ContactWhereInput | No |
| orderBy | ContactOrderByWithRelationInput[] | ContactOrderByWithRelationInput | No |
| cursor | ContactWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ContactScalarFieldEnum | ContactScalarFieldEnum[] | No |
Find zero or more Contact
// Get all Contact
const Contact = await prisma.contact.findMany()
// Get first 10 Contact
const Contact = await prisma.contact.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | ContactWhereInput | No |
| orderBy | ContactOrderByWithRelationInput[] | ContactOrderByWithRelationInput | No |
| cursor | ContactWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ContactScalarFieldEnum | ContactScalarFieldEnum[] | No |
Create one Contact
// Create one Contact
const Contact = await prisma.contact.create({
data: {
// ... data to create a Contact
}
})
| Name | Type | Required |
|---|---|---|
| data | ContactCreateInput | ContactUncheckedCreateInput | Yes |
Delete one Contact
// Delete one Contact
const Contact = await prisma.contact.delete({
where: {
// ... filter to delete one Contact
}
})
| Name | Type | Required |
|---|---|---|
| where | ContactWhereUniqueInput | Yes |
Update one Contact
// Update one Contact
const contact = await prisma.contact.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ContactUpdateInput | ContactUncheckedUpdateInput | Yes |
| where | ContactWhereUniqueInput | Yes |
Delete zero or more Contact
// Delete a few Contact
const { count } = await prisma.contact.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ContactWhereInput | No |
Update zero or one Contact
const { count } = await prisma.contact.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ContactUpdateManyMutationInput | ContactUncheckedUpdateManyInput | Yes |
| where | ContactWhereInput | No |
Create or update one Contact
// Update or create a Contact
const contact = await prisma.contact.upsert({
create: {
// ... data to create a Contact
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Contact we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | ContactWhereUniqueInput | Yes |
| create | ContactCreateInput | ContactUncheckedCreateInput | Yes |
| update | ContactUpdateInput | ContactUncheckedUpdateInput | Yes |
| Name | Value |
|---|---|
| @@unique |
|
| @@index |
|
Find zero or one Country
// Get one Country
const country = await prisma.country.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | CountryWhereUniqueInput | Yes |
Find first Country
// Get one Country
const country = await prisma.country.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | CountryWhereInput | No |
| orderBy | CountryOrderByWithRelationInput[] | CountryOrderByWithRelationInput | No |
| cursor | CountryWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | CountryScalarFieldEnum | CountryScalarFieldEnum[] | No |
Find zero or more Country
// Get all Country
const Country = await prisma.country.findMany()
// Get first 10 Country
const Country = await prisma.country.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | CountryWhereInput | No |
| orderBy | CountryOrderByWithRelationInput[] | CountryOrderByWithRelationInput | No |
| cursor | CountryWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | CountryScalarFieldEnum | CountryScalarFieldEnum[] | No |
Create one Country
// Create one Country
const Country = await prisma.country.create({
data: {
// ... data to create a Country
}
})
| Name | Type | Required |
|---|---|---|
| data | CountryCreateInput | CountryUncheckedCreateInput | Yes |
Delete one Country
// Delete one Country
const Country = await prisma.country.delete({
where: {
// ... filter to delete one Country
}
})
| Name | Type | Required |
|---|---|---|
| where | CountryWhereUniqueInput | Yes |
Update one Country
// Update one Country
const country = await prisma.country.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | CountryUpdateInput | CountryUncheckedUpdateInput | Yes |
| where | CountryWhereUniqueInput | Yes |
Delete zero or more Country
// Delete a few Country
const { count } = await prisma.country.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | CountryWhereInput | No |
Update zero or one Country
const { count } = await prisma.country.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | CountryUpdateManyMutationInput | CountryUncheckedUpdateManyInput | Yes |
| where | CountryWhereInput | No |
Create or update one Country
// Update or create a Country
const country = await prisma.country.upsert({
create: {
// ... data to create a Country
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Country we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | CountryWhereUniqueInput | Yes |
| create | CountryCreateInput | CountryUncheckedCreateInput | Yes |
| update | CountryUpdateInput | CountryUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| created_at | DateTime? |
|
No | - |
| updated_at | DateTime? |
|
No | - |
| name | String? |
|
No | - |
| mac_address | String? |
|
No | - |
| model | String? |
|
No | - |
| os | String? |
|
No | - |
| os_version | String? |
|
No | - |
| device_id | String? |
|
No | - |
| brand | String? |
|
No | - |
| manufacturer | String? |
|
No | - |
| version | String |
|
Yes | - |
| Version | Version |
|
Yes | - |
| LoginRecord | LoginRecord[] |
|
Yes | - |
Find zero or one Device
// Get one Device
const device = await prisma.device.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | DeviceWhereUniqueInput | Yes |
Find first Device
// Get one Device
const device = await prisma.device.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | DeviceWhereInput | No |
| orderBy | DeviceOrderByWithRelationInput[] | DeviceOrderByWithRelationInput | No |
| cursor | DeviceWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | DeviceScalarFieldEnum | DeviceScalarFieldEnum[] | No |
Find zero or more Device
// Get all Device
const Device = await prisma.device.findMany()
// Get first 10 Device
const Device = await prisma.device.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | DeviceWhereInput | No |
| orderBy | DeviceOrderByWithRelationInput[] | DeviceOrderByWithRelationInput | No |
| cursor | DeviceWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | DeviceScalarFieldEnum | DeviceScalarFieldEnum[] | No |
Create one Device
// Create one Device
const Device = await prisma.device.create({
data: {
// ... data to create a Device
}
})
| Name | Type | Required |
|---|---|---|
| data | DeviceCreateInput | DeviceUncheckedCreateInput | Yes |
Delete one Device
// Delete one Device
const Device = await prisma.device.delete({
where: {
// ... filter to delete one Device
}
})
| Name | Type | Required |
|---|---|---|
| where | DeviceWhereUniqueInput | Yes |
Update one Device
// Update one Device
const device = await prisma.device.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | DeviceUpdateInput | DeviceUncheckedUpdateInput | Yes |
| where | DeviceWhereUniqueInput | Yes |
Delete zero or more Device
// Delete a few Device
const { count } = await prisma.device.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | DeviceWhereInput | No |
Update zero or one Device
const { count } = await prisma.device.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | DeviceUpdateManyMutationInput | DeviceUncheckedUpdateManyInput | Yes |
| where | DeviceWhereInput | No |
Create or update one Device
// Update or create a Device
const device = await prisma.device.upsert({
create: {
// ... data to create a Device
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Device we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | DeviceWhereUniqueInput | Yes |
| create | DeviceCreateInput | DeviceUncheckedCreateInput | Yes |
| update | DeviceUpdateInput | DeviceUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| created_at | DateTime |
|
Yes | - |
| updated_at | DateTime |
|
Yes | - |
| amount | Int |
|
Yes | - |
| donated_at | DateTime |
|
Yes | - |
| version | String |
|
Yes | - |
| person | Int |
|
Yes | - |
| member | Int |
|
Yes | - |
| organization | Int |
|
Yes | - |
| Contact | Contact[] |
|
Yes | - |
| Member | Member |
|
Yes | - |
| Organization | Organization |
|
Yes | - |
| Person | Person |
|
Yes | - |
| Version | Version |
|
Yes | - |
Find zero or one Donation
// Get one Donation
const donation = await prisma.donation.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | DonationWhereUniqueInput | Yes |
Find first Donation
// Get one Donation
const donation = await prisma.donation.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | DonationWhereInput | No |
| orderBy | DonationOrderByWithRelationInput[] | DonationOrderByWithRelationInput | No |
| cursor | DonationWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | DonationScalarFieldEnum | DonationScalarFieldEnum[] | No |
Find zero or more Donation
// Get all Donation
const Donation = await prisma.donation.findMany()
// Get first 10 Donation
const Donation = await prisma.donation.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | DonationWhereInput | No |
| orderBy | DonationOrderByWithRelationInput[] | DonationOrderByWithRelationInput | No |
| cursor | DonationWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | DonationScalarFieldEnum | DonationScalarFieldEnum[] | No |
Create one Donation
// Create one Donation
const Donation = await prisma.donation.create({
data: {
// ... data to create a Donation
}
})
| Name | Type | Required |
|---|---|---|
| data | DonationCreateInput | DonationUncheckedCreateInput | Yes |
Delete one Donation
// Delete one Donation
const Donation = await prisma.donation.delete({
where: {
// ... filter to delete one Donation
}
})
| Name | Type | Required |
|---|---|---|
| where | DonationWhereUniqueInput | Yes |
Update one Donation
// Update one Donation
const donation = await prisma.donation.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | DonationUpdateInput | DonationUncheckedUpdateInput | Yes |
| where | DonationWhereUniqueInput | Yes |
Delete zero or more Donation
// Delete a few Donation
const { count } = await prisma.donation.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | DonationWhereInput | No |
Update zero or one Donation
const { count } = await prisma.donation.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | DonationUpdateManyMutationInput | DonationUncheckedUpdateManyInput | Yes |
| where | DonationWhereInput | No |
Create or update one Donation
// Update or create a Donation
const donation = await prisma.donation.upsert({
create: {
// ... data to create a Donation
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Donation we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | DonationWhereUniqueInput | Yes |
| create | DonationCreateInput | DonationUncheckedCreateInput | Yes |
| update | DonationUpdateInput | DonationUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| created_at | DateTime |
|
Yes | - |
| updated_at | DateTime |
|
Yes | - |
| name | String |
|
Yes | - |
| founded_at | DateTime |
|
Yes | - |
| accreditation | String? |
|
No | - |
| bed_count | Int? |
|
No | - |
| emergency_room | Boolean? |
|
No | - |
| services | String[] |
|
Yes | - |
| specialties | String[] |
|
Yes | - |
| rating | Float? |
|
No | - |
| facility_type | FacilityType? |
|
No | - |
| ownership | String? |
|
No | - |
| insurance_accepted | String? |
|
No | - |
| operating_hours | String? |
|
No | - |
| infrastructure | String? |
|
No | - |
| security_controls | String? |
|
No | - |
| version | String |
|
Yes | - |
| location | Int? |
|
No | - |
| contact | Int? |
|
No | - |
| founder | Int? |
|
No | - |
| director | Int? |
|
No | - |
| chairman | Int? |
|
No | - |
| Contact_Contact_hospitalToHospital | Contact[] |
|
Yes | - |
| Contact_Hospital_contactToContact | Contact? |
|
No | - |
| Location | Location? |
|
No | - |
| Version | Version |
|
Yes | - |
Find zero or one Hospital
// Get one Hospital
const hospital = await prisma.hospital.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | HospitalWhereUniqueInput | Yes |
Find first Hospital
// Get one Hospital
const hospital = await prisma.hospital.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | HospitalWhereInput | No |
| orderBy | HospitalOrderByWithRelationInput[] | HospitalOrderByWithRelationInput | No |
| cursor | HospitalWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | HospitalScalarFieldEnum | HospitalScalarFieldEnum[] | No |
Find zero or more Hospital
// Get all Hospital
const Hospital = await prisma.hospital.findMany()
// Get first 10 Hospital
const Hospital = await prisma.hospital.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | HospitalWhereInput | No |
| orderBy | HospitalOrderByWithRelationInput[] | HospitalOrderByWithRelationInput | No |
| cursor | HospitalWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | HospitalScalarFieldEnum | HospitalScalarFieldEnum[] | No |
Create one Hospital
// Create one Hospital
const Hospital = await prisma.hospital.create({
data: {
// ... data to create a Hospital
}
})
| Name | Type | Required |
|---|---|---|
| data | HospitalCreateInput | HospitalUncheckedCreateInput | Yes |
Delete one Hospital
// Delete one Hospital
const Hospital = await prisma.hospital.delete({
where: {
// ... filter to delete one Hospital
}
})
| Name | Type | Required |
|---|---|---|
| where | HospitalWhereUniqueInput | Yes |
Update one Hospital
// Update one Hospital
const hospital = await prisma.hospital.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | HospitalUpdateInput | HospitalUncheckedUpdateInput | Yes |
| where | HospitalWhereUniqueInput | Yes |
Delete zero or more Hospital
// Delete a few Hospital
const { count } = await prisma.hospital.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | HospitalWhereInput | No |
Update zero or one Hospital
const { count } = await prisma.hospital.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | HospitalUpdateManyMutationInput | HospitalUncheckedUpdateManyInput | Yes |
| where | HospitalWhereInput | No |
Create or update one Hospital
// Update or create a Hospital
const hospital = await prisma.hospital.upsert({
create: {
// ... data to create a Hospital
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Hospital we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | HospitalWhereUniqueInput | Yes |
| create | HospitalCreateInput | HospitalUncheckedCreateInput | Yes |
| update | HospitalUpdateInput | HospitalUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| latitude | Float |
|
Yes | - |
| longitude | Float |
|
Yes | - |
| version | String |
|
Yes | - |
| created_at | DateTime? |
|
No | - |
| updated_at | DateTime? |
|
No | - |
| Hospital | Hospital[] |
|
Yes | - |
| Version | Version |
|
Yes | - |
Find zero or one Location
// Get one Location
const location = await prisma.location.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | LocationWhereUniqueInput | Yes |
Find first Location
// Get one Location
const location = await prisma.location.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | LocationWhereInput | No |
| orderBy | LocationOrderByWithRelationInput[] | LocationOrderByWithRelationInput | No |
| cursor | LocationWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | LocationScalarFieldEnum | LocationScalarFieldEnum[] | No |
Find zero or more Location
// Get all Location
const Location = await prisma.location.findMany()
// Get first 10 Location
const Location = await prisma.location.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | LocationWhereInput | No |
| orderBy | LocationOrderByWithRelationInput[] | LocationOrderByWithRelationInput | No |
| cursor | LocationWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | LocationScalarFieldEnum | LocationScalarFieldEnum[] | No |
Create one Location
// Create one Location
const Location = await prisma.location.create({
data: {
// ... data to create a Location
}
})
| Name | Type | Required |
|---|---|---|
| data | LocationCreateInput | LocationUncheckedCreateInput | Yes |
Delete one Location
// Delete one Location
const Location = await prisma.location.delete({
where: {
// ... filter to delete one Location
}
})
| Name | Type | Required |
|---|---|---|
| where | LocationWhereUniqueInput | Yes |
Update one Location
// Update one Location
const location = await prisma.location.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | LocationUpdateInput | LocationUncheckedUpdateInput | Yes |
| where | LocationWhereUniqueInput | Yes |
Delete zero or more Location
// Delete a few Location
const { count } = await prisma.location.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | LocationWhereInput | No |
Update zero or one Location
const { count } = await prisma.location.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | LocationUpdateManyMutationInput | LocationUncheckedUpdateManyInput | Yes |
| where | LocationWhereInput | No |
Create or update one Location
// Update or create a Location
const location = await prisma.location.upsert({
create: {
// ... data to create a Location
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Location we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | LocationWhereUniqueInput | Yes |
| create | LocationCreateInput | LocationUncheckedCreateInput | Yes |
| update | LocationUpdateInput | LocationUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| user | Int |
|
Yes | - |
| ip_address | String |
|
Yes | - |
| user_agent | String |
|
Yes | - |
| login_status | String |
|
Yes | - |
| session_id | String? |
|
No | - |
| location | String? |
|
No | - |
| authentication | AuthenticationMethod? |
|
No | - |
| security_tokens | String? |
|
No | - |
| logout_timestamp | DateTime? |
|
No | - |
| version | String |
|
Yes | - |
| created_at | DateTime |
|
Yes | - |
| updated_at | DateTime |
|
Yes | - |
| devices | Int? |
|
No | - |
| Device | Device? |
|
No | - |
| Version | Version |
|
Yes | - |
| OrganizationSettings | OrganizationSettings[] |
|
Yes | - |
| User | User[] |
|
Yes | - |
| UserSettings | UserSettings[] |
|
Yes | - |
Find zero or one LoginRecord
// Get one LoginRecord
const loginRecord = await prisma.loginRecord.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | LoginRecordWhereUniqueInput | Yes |
Find first LoginRecord
// Get one LoginRecord
const loginRecord = await prisma.loginRecord.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | LoginRecordWhereInput | No |
| orderBy | LoginRecordOrderByWithRelationInput[] | LoginRecordOrderByWithRelationInput | No |
| cursor | LoginRecordWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | LoginRecordScalarFieldEnum | LoginRecordScalarFieldEnum[] | No |
Find zero or more LoginRecord
// Get all LoginRecord
const LoginRecord = await prisma.loginRecord.findMany()
// Get first 10 LoginRecord
const LoginRecord = await prisma.loginRecord.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | LoginRecordWhereInput | No |
| orderBy | LoginRecordOrderByWithRelationInput[] | LoginRecordOrderByWithRelationInput | No |
| cursor | LoginRecordWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | LoginRecordScalarFieldEnum | LoginRecordScalarFieldEnum[] | No |
Create one LoginRecord
// Create one LoginRecord
const LoginRecord = await prisma.loginRecord.create({
data: {
// ... data to create a LoginRecord
}
})
| Name | Type | Required |
|---|---|---|
| data | LoginRecordCreateInput | LoginRecordUncheckedCreateInput | Yes |
Delete one LoginRecord
// Delete one LoginRecord
const LoginRecord = await prisma.loginRecord.delete({
where: {
// ... filter to delete one LoginRecord
}
})
| Name | Type | Required |
|---|---|---|
| where | LoginRecordWhereUniqueInput | Yes |
Update one LoginRecord
// Update one LoginRecord
const loginRecord = await prisma.loginRecord.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | LoginRecordUpdateInput | LoginRecordUncheckedUpdateInput | Yes |
| where | LoginRecordWhereUniqueInput | Yes |
Delete zero or more LoginRecord
// Delete a few LoginRecord
const { count } = await prisma.loginRecord.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | LoginRecordWhereInput | No |
Update zero or one LoginRecord
const { count } = await prisma.loginRecord.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | LoginRecordUpdateManyMutationInput | LoginRecordUncheckedUpdateManyInput | Yes |
| where | LoginRecordWhereInput | No |
Create or update one LoginRecord
// Update or create a LoginRecord
const loginRecord = await prisma.loginRecord.upsert({
create: {
// ... data to create a LoginRecord
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the LoginRecord we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | LoginRecordWhereUniqueInput | Yes |
| create | LoginRecordCreateInput | LoginRecordUncheckedCreateInput | Yes |
| update | LoginRecordUpdateInput | LoginRecordUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| created_at | DateTime |
|
Yes | - |
| updated_at | DateTime |
|
Yes | - |
| version | String |
|
Yes | - |
| allergies | String? |
|
No | - |
| complications | String? |
|
No | - |
| medications | String? |
|
No | - |
| blood_disorders | String? |
|
No | - |
| club_id | Int? |
|
No | - |
| infectious_diseases | String? |
|
No | - |
| last_blood_donation | DateTime? |
|
No | - |
| medical_conditions | String? |
|
No | - |
| person_id | Int? |
|
No | - |
| Donation | Donation[] |
|
Yes | - |
| Club | Club? |
|
No | - |
| Person | Person? |
|
No | - |
| Version | Version |
|
Yes | - |
| Request | Request[] |
|
Yes | - |
Find zero or one Member
// Get one Member
const member = await prisma.member.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | MemberWhereUniqueInput | Yes |
Find first Member
// Get one Member
const member = await prisma.member.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | MemberWhereInput | No |
| orderBy | MemberOrderByWithRelationInput[] | MemberOrderByWithRelationInput | No |
| cursor | MemberWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | MemberScalarFieldEnum | MemberScalarFieldEnum[] | No |
Find zero or more Member
// Get all Member
const Member = await prisma.member.findMany()
// Get first 10 Member
const Member = await prisma.member.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | MemberWhereInput | No |
| orderBy | MemberOrderByWithRelationInput[] | MemberOrderByWithRelationInput | No |
| cursor | MemberWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | MemberScalarFieldEnum | MemberScalarFieldEnum[] | No |
Create one Member
// Create one Member
const Member = await prisma.member.create({
data: {
// ... data to create a Member
}
})
| Name | Type | Required |
|---|---|---|
| data | MemberCreateInput | MemberUncheckedCreateInput | Yes |
Delete one Member
// Delete one Member
const Member = await prisma.member.delete({
where: {
// ... filter to delete one Member
}
})
| Name | Type | Required |
|---|---|---|
| where | MemberWhereUniqueInput | Yes |
Update one Member
// Update one Member
const member = await prisma.member.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | MemberUpdateInput | MemberUncheckedUpdateInput | Yes |
| where | MemberWhereUniqueInput | Yes |
Delete zero or more Member
// Delete a few Member
const { count } = await prisma.member.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | MemberWhereInput | No |
Update zero or one Member
const { count } = await prisma.member.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | MemberUpdateManyMutationInput | MemberUncheckedUpdateManyInput | Yes |
| where | MemberWhereInput | No |
Create or update one Member
// Update or create a Member
const member = await prisma.member.upsert({
create: {
// ... data to create a Member
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Member we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | MemberWhereUniqueInput | Yes |
| create | MemberCreateInput | MemberUncheckedCreateInput | Yes |
| update | MemberUpdateInput | MemberUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| created_at | DateTime |
|
Yes | - |
| updated_at | DateTime |
|
Yes | - |
| org_type | OrgType |
|
Yes | - |
| org_id | Int |
|
Yes | - |
| Volunteer | Json |
|
Yes | - |
| personId | Int |
|
Yes | - |
| organizationSettingsId | Int |
|
Yes | - |
| clubId | Int? |
|
No | - |
| version | String |
|
Yes | - |
| Ambulance | Ambulance[] |
|
Yes | - |
| Donation | Donation[] |
|
Yes | - |
| Club | Club? |
|
No | - |
| OrganizationSettings | OrganizationSettings |
|
Yes | - |
| Person | Person |
|
Yes | - |
| Version | Version |
|
Yes | - |
| Support | Support[] |
|
Yes | - |
| SupportMessage | SupportMessage[] |
|
Yes | - |
| Team | Team[] |
|
Yes | - |
Find zero or one Organization
// Get one Organization
const organization = await prisma.organization.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | OrganizationWhereUniqueInput | Yes |
Find first Organization
// Get one Organization
const organization = await prisma.organization.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | OrganizationWhereInput | No |
| orderBy | OrganizationOrderByWithRelationInput[] | OrganizationOrderByWithRelationInput | No |
| cursor | OrganizationWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | OrganizationScalarFieldEnum | OrganizationScalarFieldEnum[] | No |
Find zero or more Organization
// Get all Organization
const Organization = await prisma.organization.findMany()
// Get first 10 Organization
const Organization = await prisma.organization.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | OrganizationWhereInput | No |
| orderBy | OrganizationOrderByWithRelationInput[] | OrganizationOrderByWithRelationInput | No |
| cursor | OrganizationWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | OrganizationScalarFieldEnum | OrganizationScalarFieldEnum[] | No |
Create one Organization
// Create one Organization
const Organization = await prisma.organization.create({
data: {
// ... data to create a Organization
}
})
| Name | Type | Required |
|---|---|---|
| data | OrganizationCreateInput | OrganizationUncheckedCreateInput | Yes |
Delete one Organization
// Delete one Organization
const Organization = await prisma.organization.delete({
where: {
// ... filter to delete one Organization
}
})
| Name | Type | Required |
|---|---|---|
| where | OrganizationWhereUniqueInput | Yes |
Update one Organization
// Update one Organization
const organization = await prisma.organization.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | OrganizationUpdateInput | OrganizationUncheckedUpdateInput | Yes |
| where | OrganizationWhereUniqueInput | Yes |
Delete zero or more Organization
// Delete a few Organization
const { count } = await prisma.organization.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | OrganizationWhereInput | No |
Update zero or one Organization
const { count } = await prisma.organization.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | OrganizationUpdateManyMutationInput | OrganizationUncheckedUpdateManyInput | Yes |
| where | OrganizationWhereInput | No |
Create or update one Organization
// Update or create a Organization
const organization = await prisma.organization.upsert({
create: {
// ... data to create a Organization
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Organization we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | OrganizationWhereUniqueInput | Yes |
| create | OrganizationCreateInput | OrganizationUncheckedCreateInput | Yes |
| update | OrganizationUpdateInput | OrganizationUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| created_at | DateTime |
|
Yes | - |
| updated_at | DateTime |
|
Yes | - |
| language | Language |
|
Yes | - |
| time_format | TimeFormat |
|
Yes | - |
| date_format | DateFormat |
|
Yes | - |
| timezone | Timezone |
|
Yes | - |
| theme | Theme? |
|
No | - |
| email_notifications | Boolean |
|
Yes | - |
| phone_notification | Boolean |
|
Yes | - |
| push_notifications | Boolean |
|
Yes | - |
| two_factor_auth | Boolean? |
|
No | - |
| loginRecordId | Int? |
|
No | - |
| accountDeactivation | Boolean? |
|
No | - |
| avatar | String? |
|
No | - |
| clearBrowsingData | Boolean? |
|
No | - |
| contactSupportLink | String? |
|
No | - |
| dataRetentionDays | Int? |
|
No | - |
| dataSharing | Boolean? |
|
No | - |
| helpCenterLink | String? |
|
No | - |
| high_contrast_mode | Boolean? |
|
No | - |
| in_app_notifications | Boolean? |
|
No | - |
| key_board_shortcut | Boolean? |
|
No | - |
| notification_frequency | String? |
|
No | - |
| notification_sound | String? |
|
No | - |
| notification_vibrate | Boolean? |
|
No | - |
| password_reset | Boolean? |
|
No | - |
| security_answer | String? |
|
No | - |
| security_question | String? |
|
No | - |
| username | String? |
|
No | - |
| version | String |
|
Yes | - |
| Organization | Organization[] |
|
Yes | - |
| LoginRecord | LoginRecord? |
|
No | - |
| Version | Version |
|
Yes | - |
Find zero or one OrganizationSettings
// Get one OrganizationSettings
const organizationSettings = await prisma.organizationSettings.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | OrganizationSettingsWhereUniqueInput | Yes |
Find first OrganizationSettings
// Get one OrganizationSettings
const organizationSettings = await prisma.organizationSettings.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | OrganizationSettingsWhereInput | No |
| orderBy | OrganizationSettingsOrderByWithRelationInput[] | OrganizationSettingsOrderByWithRelationInput | No |
| cursor | OrganizationSettingsWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | OrganizationSettingsScalarFieldEnum | OrganizationSettingsScalarFieldEnum[] | No |
Find zero or more OrganizationSettings
// Get all OrganizationSettings
const OrganizationSettings = await prisma.organizationSettings.findMany()
// Get first 10 OrganizationSettings
const OrganizationSettings = await prisma.organizationSettings.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | OrganizationSettingsWhereInput | No |
| orderBy | OrganizationSettingsOrderByWithRelationInput[] | OrganizationSettingsOrderByWithRelationInput | No |
| cursor | OrganizationSettingsWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | OrganizationSettingsScalarFieldEnum | OrganizationSettingsScalarFieldEnum[] | No |
Create one OrganizationSettings
// Create one OrganizationSettings
const OrganizationSettings = await prisma.organizationSettings.create({
data: {
// ... data to create a OrganizationSettings
}
})
| Name | Type | Required |
|---|---|---|
| data | OrganizationSettingsCreateInput | OrganizationSettingsUncheckedCreateInput | Yes |
Delete one OrganizationSettings
// Delete one OrganizationSettings
const OrganizationSettings = await prisma.organizationSettings.delete({
where: {
// ... filter to delete one OrganizationSettings
}
})
| Name | Type | Required |
|---|---|---|
| where | OrganizationSettingsWhereUniqueInput | Yes |
Update one OrganizationSettings
// Update one OrganizationSettings
const organizationSettings = await prisma.organizationSettings.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | OrganizationSettingsUpdateInput | OrganizationSettingsUncheckedUpdateInput | Yes |
| where | OrganizationSettingsWhereUniqueInput | Yes |
Delete zero or more OrganizationSettings
// Delete a few OrganizationSettings
const { count } = await prisma.organizationSettings.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | OrganizationSettingsWhereInput | No |
Update zero or one OrganizationSettings
const { count } = await prisma.organizationSettings.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | OrganizationSettingsUpdateManyMutationInput | OrganizationSettingsUncheckedUpdateManyInput | Yes |
| where | OrganizationSettingsWhereInput | No |
Create or update one OrganizationSettings
// Update or create a OrganizationSettings
const organizationSettings = await prisma.organizationSettings.upsert({
create: {
// ... data to create a OrganizationSettings
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the OrganizationSettings we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | OrganizationSettingsWhereUniqueInput | Yes |
| create | OrganizationSettingsCreateInput | OrganizationSettingsUncheckedCreateInput | Yes |
| update | OrganizationSettingsUpdateInput | OrganizationSettingsUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| created_at | DateTime |
|
Yes | - |
| updated_at | DateTime |
|
Yes | - |
| first_name | String |
|
Yes | - |
| last_name | String? |
|
No | - |
| father_name | String? |
|
No | - |
| mother_name | String? |
|
No | - |
| profession | String? |
|
No | - |
| dob | DateTime? |
|
No | - |
| gender | Gender? |
|
No | - |
| version | String |
|
Yes | - |
| avatar | String? |
|
No | - |
| contact_id | Int |
|
Yes | - |
| teamId | Int? |
|
No | - |
| bid | String? |
|
No | - |
| driving | String? |
|
No | - |
| nid | String? |
|
No | - |
| passport | String? |
|
No | - |
| Ambulance | Ambulance[] |
|
Yes | - |
| BloodCenter | BloodCenter[] |
|
Yes | - |
| BloodDonation | BloodDonation[] |
|
Yes | - |
| Club_Club_chairmanToPerson | Club[] |
|
Yes | - |
| Club_Club_founderToPerson | Club[] |
|
Yes | - |
| Club_Club_vice_chairmanToPerson | Club[] |
|
Yes | - |
| Contact_Contact_personToPerson | Contact[] |
|
Yes | - |
| Donation | Donation[] |
|
Yes | - |
| Member | Member[] |
|
Yes | - |
| Organization | Organization[] |
|
Yes | - |
| Contact_Person_contact_idToContact | Contact |
|
Yes | - |
| Team_Person_teamIdToTeam | Team? |
|
No | - |
| Version | Version |
|
Yes | - |
| Request | Request[] |
|
Yes | - |
| SupportMessage | SupportMessage[] |
|
Yes | - |
| Team_Team_membersToPerson | Team[] |
|
Yes | - |
| User | User[] |
|
Yes | - |
Find zero or one Person
// Get one Person
const person = await prisma.person.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PersonWhereUniqueInput | Yes |
Find first Person
// Get one Person
const person = await prisma.person.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PersonWhereInput | No |
| orderBy | PersonOrderByWithRelationInput[] | PersonOrderByWithRelationInput | No |
| cursor | PersonWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | PersonScalarFieldEnum | PersonScalarFieldEnum[] | No |
Find zero or more Person
// Get all Person
const Person = await prisma.person.findMany()
// Get first 10 Person
const Person = await prisma.person.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | PersonWhereInput | No |
| orderBy | PersonOrderByWithRelationInput[] | PersonOrderByWithRelationInput | No |
| cursor | PersonWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | PersonScalarFieldEnum | PersonScalarFieldEnum[] | No |
Create one Person
// Create one Person
const Person = await prisma.person.create({
data: {
// ... data to create a Person
}
})
| Name | Type | Required |
|---|---|---|
| data | PersonCreateInput | PersonUncheckedCreateInput | Yes |
Delete one Person
// Delete one Person
const Person = await prisma.person.delete({
where: {
// ... filter to delete one Person
}
})
| Name | Type | Required |
|---|---|---|
| where | PersonWhereUniqueInput | Yes |
Update one Person
// Update one Person
const person = await prisma.person.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | PersonUpdateInput | PersonUncheckedUpdateInput | Yes |
| where | PersonWhereUniqueInput | Yes |
Delete zero or more Person
// Delete a few Person
const { count } = await prisma.person.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PersonWhereInput | No |
Update zero or one Person
const { count } = await prisma.person.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | PersonUpdateManyMutationInput | PersonUncheckedUpdateManyInput | Yes |
| where | PersonWhereInput | No |
Create or update one Person
// Update or create a Person
const person = await prisma.person.upsert({
create: {
// ... data to create a Person
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Person we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | PersonWhereUniqueInput | Yes |
| create | PersonCreateInput | PersonUncheckedCreateInput | Yes |
| update | PersonUpdateInput | PersonUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| created_at | DateTime |
|
Yes | - |
| updated_at | DateTime |
|
Yes | - |
| health_issue | String |
|
Yes | - |
| blood_group | BloodGroup |
|
Yes | - |
| quantity | Int |
|
Yes | - |
| donation_type | String |
|
Yes | - |
| datetime | DateTime |
|
Yes | - |
| hospital_name | String |
|
Yes | - |
| hospital_address | String |
|
Yes | - |
| hospital_phone | String |
|
Yes | - |
| hospital_email | String |
|
Yes | - |
| version | String |
|
Yes | - |
| memberId | Int? |
|
No | - |
| personId | Int |
|
Yes | - |
| Member | Member? |
|
No | - |
| Person | Person |
|
Yes | - |
| Version | Version |
|
Yes | - |
Find zero or one Request
// Get one Request
const request = await prisma.request.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | RequestWhereUniqueInput | Yes |
Find first Request
// Get one Request
const request = await prisma.request.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | RequestWhereInput | No |
| orderBy | RequestOrderByWithRelationInput[] | RequestOrderByWithRelationInput | No |
| cursor | RequestWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | RequestScalarFieldEnum | RequestScalarFieldEnum[] | No |
Find zero or more Request
// Get all Request
const Request = await prisma.request.findMany()
// Get first 10 Request
const Request = await prisma.request.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | RequestWhereInput | No |
| orderBy | RequestOrderByWithRelationInput[] | RequestOrderByWithRelationInput | No |
| cursor | RequestWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | RequestScalarFieldEnum | RequestScalarFieldEnum[] | No |
Create one Request
// Create one Request
const Request = await prisma.request.create({
data: {
// ... data to create a Request
}
})
| Name | Type | Required |
|---|---|---|
| data | RequestCreateInput | RequestUncheckedCreateInput | Yes |
Delete one Request
// Delete one Request
const Request = await prisma.request.delete({
where: {
// ... filter to delete one Request
}
})
| Name | Type | Required |
|---|---|---|
| where | RequestWhereUniqueInput | Yes |
Update one Request
// Update one Request
const request = await prisma.request.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | RequestUpdateInput | RequestUncheckedUpdateInput | Yes |
| where | RequestWhereUniqueInput | Yes |
Delete zero or more Request
// Delete a few Request
const { count } = await prisma.request.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | RequestWhereInput | No |
Update zero or one Request
const { count } = await prisma.request.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | RequestUpdateManyMutationInput | RequestUncheckedUpdateManyInput | Yes |
| where | RequestWhereInput | No |
Create or update one Request
// Update or create a Request
const request = await prisma.request.upsert({
create: {
// ... data to create a Request
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Request we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | RequestWhereUniqueInput | Yes |
| create | RequestCreateInput | RequestUncheckedCreateInput | Yes |
| update | RequestUpdateInput | RequestUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| question | String |
|
Yes | - |
| answer | String |
|
Yes | - |
| userId | Int |
|
Yes | - |
| created_at | DateTime |
|
Yes | - |
| updated_at | DateTime |
|
Yes | - |
| version | String |
|
Yes | - |
| User | User |
|
Yes | - |
| Version | Version |
|
Yes | - |
| UserSettings | UserSettings[] |
|
Yes | - |
Find zero or one SecurityQuestion
// Get one SecurityQuestion
const securityQuestion = await prisma.securityQuestion.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | SecurityQuestionWhereUniqueInput | Yes |
Find first SecurityQuestion
// Get one SecurityQuestion
const securityQuestion = await prisma.securityQuestion.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | SecurityQuestionWhereInput | No |
| orderBy | SecurityQuestionOrderByWithRelationInput[] | SecurityQuestionOrderByWithRelationInput | No |
| cursor | SecurityQuestionWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | SecurityQuestionScalarFieldEnum | SecurityQuestionScalarFieldEnum[] | No |
Find zero or more SecurityQuestion
// Get all SecurityQuestion
const SecurityQuestion = await prisma.securityQuestion.findMany()
// Get first 10 SecurityQuestion
const SecurityQuestion = await prisma.securityQuestion.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | SecurityQuestionWhereInput | No |
| orderBy | SecurityQuestionOrderByWithRelationInput[] | SecurityQuestionOrderByWithRelationInput | No |
| cursor | SecurityQuestionWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | SecurityQuestionScalarFieldEnum | SecurityQuestionScalarFieldEnum[] | No |
Create one SecurityQuestion
// Create one SecurityQuestion
const SecurityQuestion = await prisma.securityQuestion.create({
data: {
// ... data to create a SecurityQuestion
}
})
| Name | Type | Required |
|---|---|---|
| data | SecurityQuestionCreateInput | SecurityQuestionUncheckedCreateInput | Yes |
Delete one SecurityQuestion
// Delete one SecurityQuestion
const SecurityQuestion = await prisma.securityQuestion.delete({
where: {
// ... filter to delete one SecurityQuestion
}
})
| Name | Type | Required |
|---|---|---|
| where | SecurityQuestionWhereUniqueInput | Yes |
Update one SecurityQuestion
// Update one SecurityQuestion
const securityQuestion = await prisma.securityQuestion.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | SecurityQuestionUpdateInput | SecurityQuestionUncheckedUpdateInput | Yes |
| where | SecurityQuestionWhereUniqueInput | Yes |
Delete zero or more SecurityQuestion
// Delete a few SecurityQuestion
const { count } = await prisma.securityQuestion.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | SecurityQuestionWhereInput | No |
Update zero or one SecurityQuestion
const { count } = await prisma.securityQuestion.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | SecurityQuestionUpdateManyMutationInput | SecurityQuestionUncheckedUpdateManyInput | Yes |
| where | SecurityQuestionWhereInput | No |
Create or update one SecurityQuestion
// Update or create a SecurityQuestion
const securityQuestion = await prisma.securityQuestion.upsert({
create: {
// ... data to create a SecurityQuestion
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the SecurityQuestion we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | SecurityQuestionWhereUniqueInput | Yes |
| create | SecurityQuestionCreateInput | SecurityQuestionUncheckedCreateInput | Yes |
| update | SecurityQuestionUpdateInput | SecurityQuestionUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| String? |
|
No | - | |
| String? |
|
No | - | |
| String? |
|
No | - | |
| userId | Int |
|
Yes | - |
| created_at | DateTime |
|
Yes | - |
| updated_at | DateTime |
|
Yes | - |
| version | String |
|
Yes | - |
| Version | Version |
|
Yes | - |
| User | User[] |
|
Yes | - |
Find zero or one SocialMediaLinks
// Get one SocialMediaLinks
const socialMediaLinks = await prisma.socialMediaLinks.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | SocialMediaLinksWhereUniqueInput | Yes |
Find first SocialMediaLinks
// Get one SocialMediaLinks
const socialMediaLinks = await prisma.socialMediaLinks.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | SocialMediaLinksWhereInput | No |
| orderBy | SocialMediaLinksOrderByWithRelationInput[] | SocialMediaLinksOrderByWithRelationInput | No |
| cursor | SocialMediaLinksWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | SocialMediaLinksScalarFieldEnum | SocialMediaLinksScalarFieldEnum[] | No |
Find zero or more SocialMediaLinks
// Get all SocialMediaLinks
const SocialMediaLinks = await prisma.socialMediaLinks.findMany()
// Get first 10 SocialMediaLinks
const SocialMediaLinks = await prisma.socialMediaLinks.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | SocialMediaLinksWhereInput | No |
| orderBy | SocialMediaLinksOrderByWithRelationInput[] | SocialMediaLinksOrderByWithRelationInput | No |
| cursor | SocialMediaLinksWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | SocialMediaLinksScalarFieldEnum | SocialMediaLinksScalarFieldEnum[] | No |
Create one SocialMediaLinks
// Create one SocialMediaLinks
const SocialMediaLinks = await prisma.socialMediaLinks.create({
data: {
// ... data to create a SocialMediaLinks
}
})
| Name | Type | Required |
|---|---|---|
| data | SocialMediaLinksCreateInput | SocialMediaLinksUncheckedCreateInput | Yes |
Delete one SocialMediaLinks
// Delete one SocialMediaLinks
const SocialMediaLinks = await prisma.socialMediaLinks.delete({
where: {
// ... filter to delete one SocialMediaLinks
}
})
| Name | Type | Required |
|---|---|---|
| where | SocialMediaLinksWhereUniqueInput | Yes |
Update one SocialMediaLinks
// Update one SocialMediaLinks
const socialMediaLinks = await prisma.socialMediaLinks.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | SocialMediaLinksUpdateInput | SocialMediaLinksUncheckedUpdateInput | Yes |
| where | SocialMediaLinksWhereUniqueInput | Yes |
Delete zero or more SocialMediaLinks
// Delete a few SocialMediaLinks
const { count } = await prisma.socialMediaLinks.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | SocialMediaLinksWhereInput | No |
Update zero or one SocialMediaLinks
const { count } = await prisma.socialMediaLinks.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | SocialMediaLinksUpdateManyMutationInput | SocialMediaLinksUncheckedUpdateManyInput | Yes |
| where | SocialMediaLinksWhereInput | No |
Create or update one SocialMediaLinks
// Update or create a SocialMediaLinks
const socialMediaLinks = await prisma.socialMediaLinks.upsert({
create: {
// ... data to create a SocialMediaLinks
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the SocialMediaLinks we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | SocialMediaLinksWhereUniqueInput | Yes |
| create | SocialMediaLinksCreateInput | SocialMediaLinksUncheckedCreateInput | Yes |
| update | SocialMediaLinksUpdateInput | SocialMediaLinksUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| created_at | DateTime |
|
Yes | - |
| updated_at | DateTime |
|
Yes | - |
| version | String |
|
Yes | - |
| organization | Int |
|
Yes | - |
| messages | String? |
|
No | - |
| status | String? |
|
No | - |
| priority | Int |
|
Yes | - |
| subject | String? |
|
No | - |
| Organization | Organization |
|
Yes | - |
| Version | Version |
|
Yes | - |
| SupportMessage | SupportMessage[] |
|
Yes | - |
Find zero or one Support
// Get one Support
const support = await prisma.support.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | SupportWhereUniqueInput | Yes |
Find first Support
// Get one Support
const support = await prisma.support.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | SupportWhereInput | No |
| orderBy | SupportOrderByWithRelationInput[] | SupportOrderByWithRelationInput | No |
| cursor | SupportWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | SupportScalarFieldEnum | SupportScalarFieldEnum[] | No |
Find zero or more Support
// Get all Support
const Support = await prisma.support.findMany()
// Get first 10 Support
const Support = await prisma.support.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | SupportWhereInput | No |
| orderBy | SupportOrderByWithRelationInput[] | SupportOrderByWithRelationInput | No |
| cursor | SupportWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | SupportScalarFieldEnum | SupportScalarFieldEnum[] | No |
Create one Support
// Create one Support
const Support = await prisma.support.create({
data: {
// ... data to create a Support
}
})
| Name | Type | Required |
|---|---|---|
| data | SupportCreateInput | SupportUncheckedCreateInput | Yes |
Delete one Support
// Delete one Support
const Support = await prisma.support.delete({
where: {
// ... filter to delete one Support
}
})
| Name | Type | Required |
|---|---|---|
| where | SupportWhereUniqueInput | Yes |
Update one Support
// Update one Support
const support = await prisma.support.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | SupportUpdateInput | SupportUncheckedUpdateInput | Yes |
| where | SupportWhereUniqueInput | Yes |
Delete zero or more Support
// Delete a few Support
const { count } = await prisma.support.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | SupportWhereInput | No |
Update zero or one Support
const { count } = await prisma.support.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | SupportUpdateManyMutationInput | SupportUncheckedUpdateManyInput | Yes |
| where | SupportWhereInput | No |
Create or update one Support
// Update or create a Support
const support = await prisma.support.upsert({
create: {
// ... data to create a Support
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Support we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | SupportWhereUniqueInput | Yes |
| create | SupportCreateInput | SupportUncheckedCreateInput | Yes |
| update | SupportUpdateInput | SupportUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| created_at | DateTime |
|
Yes | - |
| updated_at | DateTime |
|
Yes | - |
| organization | Int |
|
Yes | - |
| support | Int |
|
Yes | - |
| message | String |
|
Yes | - |
| author | Int |
|
Yes | - |
| version | String |
|
Yes | - |
| Person | Person |
|
Yes | - |
| Organization | Organization |
|
Yes | - |
| Support | Support |
|
Yes | - |
| Version | Version |
|
Yes | - |
Find zero or one SupportMessage
// Get one SupportMessage
const supportMessage = await prisma.supportMessage.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | SupportMessageWhereUniqueInput | Yes |
Find first SupportMessage
// Get one SupportMessage
const supportMessage = await prisma.supportMessage.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | SupportMessageWhereInput | No |
| orderBy | SupportMessageOrderByWithRelationInput[] | SupportMessageOrderByWithRelationInput | No |
| cursor | SupportMessageWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | SupportMessageScalarFieldEnum | SupportMessageScalarFieldEnum[] | No |
Find zero or more SupportMessage
// Get all SupportMessage
const SupportMessage = await prisma.supportMessage.findMany()
// Get first 10 SupportMessage
const SupportMessage = await prisma.supportMessage.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | SupportMessageWhereInput | No |
| orderBy | SupportMessageOrderByWithRelationInput[] | SupportMessageOrderByWithRelationInput | No |
| cursor | SupportMessageWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | SupportMessageScalarFieldEnum | SupportMessageScalarFieldEnum[] | No |
Create one SupportMessage
// Create one SupportMessage
const SupportMessage = await prisma.supportMessage.create({
data: {
// ... data to create a SupportMessage
}
})
| Name | Type | Required |
|---|---|---|
| data | SupportMessageCreateInput | SupportMessageUncheckedCreateInput | Yes |
Delete one SupportMessage
// Delete one SupportMessage
const SupportMessage = await prisma.supportMessage.delete({
where: {
// ... filter to delete one SupportMessage
}
})
| Name | Type | Required |
|---|---|---|
| where | SupportMessageWhereUniqueInput | Yes |
Update one SupportMessage
// Update one SupportMessage
const supportMessage = await prisma.supportMessage.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | SupportMessageUpdateInput | SupportMessageUncheckedUpdateInput | Yes |
| where | SupportMessageWhereUniqueInput | Yes |
Delete zero or more SupportMessage
// Delete a few SupportMessage
const { count } = await prisma.supportMessage.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | SupportMessageWhereInput | No |
Update zero or one SupportMessage
const { count } = await prisma.supportMessage.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | SupportMessageUpdateManyMutationInput | SupportMessageUncheckedUpdateManyInput | Yes |
| where | SupportMessageWhereInput | No |
Create or update one SupportMessage
// Update or create a SupportMessage
const supportMessage = await prisma.supportMessage.upsert({
create: {
// ... data to create a SupportMessage
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the SupportMessage we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | SupportMessageWhereUniqueInput | Yes |
| create | SupportMessageCreateInput | SupportMessageUncheckedCreateInput | Yes |
| update | SupportMessageUpdateInput | SupportMessageUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| created_at | DateTime |
|
Yes | - |
| updated_at | DateTime |
|
Yes | - |
| started_at | DateTime |
|
Yes | - |
| ended_at | DateTime |
|
Yes | - |
| organization | Int |
|
Yes | - |
| version | String |
|
Yes | - |
| members | Int |
|
Yes | - |
| status | String |
|
Yes | - |
| Person_Person_teamIdToTeam | Person[] |
|
Yes | - |
| Person_Team_membersToPerson | Person |
|
Yes | - |
| Organization | Organization |
|
Yes | - |
| Version | Version |
|
Yes | - |
Find zero or one Team
// Get one Team
const team = await prisma.team.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | TeamWhereUniqueInput | Yes |
Find first Team
// Get one Team
const team = await prisma.team.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | TeamWhereInput | No |
| orderBy | TeamOrderByWithRelationInput[] | TeamOrderByWithRelationInput | No |
| cursor | TeamWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | TeamScalarFieldEnum | TeamScalarFieldEnum[] | No |
Find zero or more Team
// Get all Team
const Team = await prisma.team.findMany()
// Get first 10 Team
const Team = await prisma.team.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | TeamWhereInput | No |
| orderBy | TeamOrderByWithRelationInput[] | TeamOrderByWithRelationInput | No |
| cursor | TeamWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | TeamScalarFieldEnum | TeamScalarFieldEnum[] | No |
Create one Team
// Create one Team
const Team = await prisma.team.create({
data: {
// ... data to create a Team
}
})
| Name | Type | Required |
|---|---|---|
| data | TeamCreateInput | TeamUncheckedCreateInput | Yes |
Delete one Team
// Delete one Team
const Team = await prisma.team.delete({
where: {
// ... filter to delete one Team
}
})
| Name | Type | Required |
|---|---|---|
| where | TeamWhereUniqueInput | Yes |
Update one Team
// Update one Team
const team = await prisma.team.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | TeamUpdateInput | TeamUncheckedUpdateInput | Yes |
| where | TeamWhereUniqueInput | Yes |
Delete zero or more Team
// Delete a few Team
const { count } = await prisma.team.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | TeamWhereInput | No |
Update zero or one Team
const { count } = await prisma.team.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | TeamUpdateManyMutationInput | TeamUncheckedUpdateManyInput | Yes |
| where | TeamWhereInput | No |
Create or update one Team
// Update or create a Team
const team = await prisma.team.upsert({
create: {
// ... data to create a Team
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Team we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | TeamWhereUniqueInput | Yes |
| create | TeamCreateInput | TeamUncheckedCreateInput | Yes |
| update | TeamUpdateInput | TeamUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| is_enabled | Boolean |
|
Yes | - |
| secret_key | String? |
|
No | - |
| user_id | Int |
|
Yes | - |
| created_at | DateTime |
|
Yes | - |
| updated_at | DateTime |
|
Yes | - |
| version | String |
|
Yes | - |
| Version | Version |
|
Yes | - |
| User | User[] |
|
Yes | - |
Find zero or one TwoFactorAuth
// Get one TwoFactorAuth
const twoFactorAuth = await prisma.twoFactorAuth.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | TwoFactorAuthWhereUniqueInput | Yes |
Find first TwoFactorAuth
// Get one TwoFactorAuth
const twoFactorAuth = await prisma.twoFactorAuth.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | TwoFactorAuthWhereInput | No |
| orderBy | TwoFactorAuthOrderByWithRelationInput[] | TwoFactorAuthOrderByWithRelationInput | No |
| cursor | TwoFactorAuthWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | TwoFactorAuthScalarFieldEnum | TwoFactorAuthScalarFieldEnum[] | No |
Find zero or more TwoFactorAuth
// Get all TwoFactorAuth
const TwoFactorAuth = await prisma.twoFactorAuth.findMany()
// Get first 10 TwoFactorAuth
const TwoFactorAuth = await prisma.twoFactorAuth.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | TwoFactorAuthWhereInput | No |
| orderBy | TwoFactorAuthOrderByWithRelationInput[] | TwoFactorAuthOrderByWithRelationInput | No |
| cursor | TwoFactorAuthWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | TwoFactorAuthScalarFieldEnum | TwoFactorAuthScalarFieldEnum[] | No |
Create one TwoFactorAuth
// Create one TwoFactorAuth
const TwoFactorAuth = await prisma.twoFactorAuth.create({
data: {
// ... data to create a TwoFactorAuth
}
})
| Name | Type | Required |
|---|---|---|
| data | TwoFactorAuthCreateInput | TwoFactorAuthUncheckedCreateInput | Yes |
Delete one TwoFactorAuth
// Delete one TwoFactorAuth
const TwoFactorAuth = await prisma.twoFactorAuth.delete({
where: {
// ... filter to delete one TwoFactorAuth
}
})
| Name | Type | Required |
|---|---|---|
| where | TwoFactorAuthWhereUniqueInput | Yes |
Update one TwoFactorAuth
// Update one TwoFactorAuth
const twoFactorAuth = await prisma.twoFactorAuth.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | TwoFactorAuthUpdateInput | TwoFactorAuthUncheckedUpdateInput | Yes |
| where | TwoFactorAuthWhereUniqueInput | Yes |
Delete zero or more TwoFactorAuth
// Delete a few TwoFactorAuth
const { count } = await prisma.twoFactorAuth.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | TwoFactorAuthWhereInput | No |
Update zero or one TwoFactorAuth
const { count } = await prisma.twoFactorAuth.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | TwoFactorAuthUpdateManyMutationInput | TwoFactorAuthUncheckedUpdateManyInput | Yes |
| where | TwoFactorAuthWhereInput | No |
Create or update one TwoFactorAuth
// Update or create a TwoFactorAuth
const twoFactorAuth = await prisma.twoFactorAuth.upsert({
create: {
// ... data to create a TwoFactorAuth
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the TwoFactorAuth we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | TwoFactorAuthWhereUniqueInput | Yes |
| create | TwoFactorAuthCreateInput | TwoFactorAuthUncheckedCreateInput | Yes |
| update | TwoFactorAuthUpdateInput | TwoFactorAuthUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| username | String? |
|
No | - |
| String |
|
Yes | - | |
| password | String |
|
Yes | - |
| status | AccountStatus |
|
Yes | - |
| ip | String |
|
Yes | - |
| two_factor_auth | Int |
|
Yes | - |
| social_login | Int |
|
Yes | - |
| logins | Int |
|
Yes | - |
| person | Int |
|
Yes | - |
| settings | Int |
|
Yes | - |
| version | String |
|
Yes | - |
| created_at | DateTime |
|
Yes | - |
| updated_at | DateTime |
|
Yes | - |
| SecurityQuestion | SecurityQuestion[] |
|
Yes | - |
| LoginRecord | LoginRecord |
|
Yes | - |
| Person | Person |
|
Yes | - |
| SocialMediaLinks | SocialMediaLinks |
|
Yes | - |
| TwoFactorAuth | TwoFactorAuth |
|
Yes | - |
| UserSettings | UserSettings |
|
Yes | - |
| Version | Version |
|
Yes | - |
| UserRole | UserRole[] |
|
Yes | - |
Find zero or one User
// Get one User
const user = await prisma.user.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | UserWhereUniqueInput | Yes |
Find first User
// Get one User
const user = await prisma.user.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | UserWhereInput | No |
| orderBy | UserOrderByWithRelationInput[] | UserOrderByWithRelationInput | No |
| cursor | UserWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | UserScalarFieldEnum | UserScalarFieldEnum[] | No |
Find zero or more User
// Get all User
const User = await prisma.user.findMany()
// Get first 10 User
const User = await prisma.user.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | UserWhereInput | No |
| orderBy | UserOrderByWithRelationInput[] | UserOrderByWithRelationInput | No |
| cursor | UserWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | UserScalarFieldEnum | UserScalarFieldEnum[] | No |
Create one User
// Create one User
const User = await prisma.user.create({
data: {
// ... data to create a User
}
})
| Name | Type | Required |
|---|---|---|
| data | UserCreateInput | UserUncheckedCreateInput | Yes |
Delete one User
// Delete one User
const User = await prisma.user.delete({
where: {
// ... filter to delete one User
}
})
| Name | Type | Required |
|---|---|---|
| where | UserWhereUniqueInput | Yes |
Update one User
// Update one User
const user = await prisma.user.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | UserUpdateInput | UserUncheckedUpdateInput | Yes |
| where | UserWhereUniqueInput | Yes |
Delete zero or more User
// Delete a few User
const { count } = await prisma.user.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | UserWhereInput | No |
Update zero or one User
const { count } = await prisma.user.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | UserUpdateManyMutationInput | UserUncheckedUpdateManyInput | Yes |
| where | UserWhereInput | No |
Create or update one User
// Update or create a User
const user = await prisma.user.upsert({
create: {
// ... data to create a User
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the User we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | UserWhereUniqueInput | Yes |
| create | UserCreateInput | UserUncheckedCreateInput | Yes |
| update | UserUpdateInput | UserUncheckedUpdateInput | Yes |
Find zero or one UserRole
// Get one UserRole
const userRole = await prisma.userRole.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | UserRoleWhereUniqueInput | Yes |
Find first UserRole
// Get one UserRole
const userRole = await prisma.userRole.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | UserRoleWhereInput | No |
| orderBy | UserRoleOrderByWithRelationInput[] | UserRoleOrderByWithRelationInput | No |
| cursor | UserRoleWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | UserRoleScalarFieldEnum | UserRoleScalarFieldEnum[] | No |
Find zero or more UserRole
// Get all UserRole
const UserRole = await prisma.userRole.findMany()
// Get first 10 UserRole
const UserRole = await prisma.userRole.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | UserRoleWhereInput | No |
| orderBy | UserRoleOrderByWithRelationInput[] | UserRoleOrderByWithRelationInput | No |
| cursor | UserRoleWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | UserRoleScalarFieldEnum | UserRoleScalarFieldEnum[] | No |
Create one UserRole
// Create one UserRole
const UserRole = await prisma.userRole.create({
data: {
// ... data to create a UserRole
}
})
| Name | Type | Required |
|---|---|---|
| data | UserRoleCreateInput | UserRoleUncheckedCreateInput | Yes |
Delete one UserRole
// Delete one UserRole
const UserRole = await prisma.userRole.delete({
where: {
// ... filter to delete one UserRole
}
})
| Name | Type | Required |
|---|---|---|
| where | UserRoleWhereUniqueInput | Yes |
Update one UserRole
// Update one UserRole
const userRole = await prisma.userRole.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | UserRoleUpdateInput | UserRoleUncheckedUpdateInput | Yes |
| where | UserRoleWhereUniqueInput | Yes |
Delete zero or more UserRole
// Delete a few UserRole
const { count } = await prisma.userRole.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | UserRoleWhereInput | No |
Update zero or one UserRole
const { count } = await prisma.userRole.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | UserRoleUpdateManyMutationInput | UserRoleUncheckedUpdateManyInput | Yes |
| where | UserRoleWhereInput | No |
Create or update one UserRole
// Update or create a UserRole
const userRole = await prisma.userRole.upsert({
create: {
// ... data to create a UserRole
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the UserRole we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | UserRoleWhereUniqueInput | Yes |
| create | UserRoleCreateInput | UserRoleUncheckedCreateInput | Yes |
| update | UserRoleUpdateInput | UserRoleUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| created_at | DateTime |
|
Yes | - |
| updated_at | DateTime |
|
Yes | - |
| language | Language |
|
Yes | - |
| time_format | TimeFormat |
|
Yes | - |
| date_format | DateFormat |
|
Yes | - |
| timezone | Timezone |
|
Yes | - |
| theme | Theme? |
|
No | - |
| email_notifications | Boolean |
|
Yes | - |
| phone_notification | Boolean |
|
Yes | - |
| push_notifications | Boolean |
|
Yes | - |
| two_factor_auth | Boolean? |
|
No | - |
| login_record_id | Int |
|
Yes | - |
| high_contrast_mode | Boolean? |
|
No | - |
| in_app_notifications | Boolean? |
|
No | - |
| key_board_shortcut | Boolean? |
|
No | - |
| notification_frequency | String? |
|
No | - |
| notification_sound | String? |
|
No | - |
| notification_vibrate | Boolean? |
|
No | - |
| password_reset | Boolean? |
|
No | - |
| version | String |
|
Yes | - |
| security_question | Int? |
|
No | - |
| User | User[] |
|
Yes | - |
| LoginRecord | LoginRecord |
|
Yes | - |
| SecurityQuestion | SecurityQuestion? |
|
No | - |
| Version | Version |
|
Yes | - |
Find zero or one UserSettings
// Get one UserSettings
const userSettings = await prisma.userSettings.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | UserSettingsWhereUniqueInput | Yes |
Find first UserSettings
// Get one UserSettings
const userSettings = await prisma.userSettings.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | UserSettingsWhereInput | No |
| orderBy | UserSettingsOrderByWithRelationInput[] | UserSettingsOrderByWithRelationInput | No |
| cursor | UserSettingsWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | UserSettingsScalarFieldEnum | UserSettingsScalarFieldEnum[] | No |
Find zero or more UserSettings
// Get all UserSettings
const UserSettings = await prisma.userSettings.findMany()
// Get first 10 UserSettings
const UserSettings = await prisma.userSettings.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | UserSettingsWhereInput | No |
| orderBy | UserSettingsOrderByWithRelationInput[] | UserSettingsOrderByWithRelationInput | No |
| cursor | UserSettingsWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | UserSettingsScalarFieldEnum | UserSettingsScalarFieldEnum[] | No |
Create one UserSettings
// Create one UserSettings
const UserSettings = await prisma.userSettings.create({
data: {
// ... data to create a UserSettings
}
})
| Name | Type | Required |
|---|---|---|
| data | UserSettingsCreateInput | UserSettingsUncheckedCreateInput | Yes |
Delete one UserSettings
// Delete one UserSettings
const UserSettings = await prisma.userSettings.delete({
where: {
// ... filter to delete one UserSettings
}
})
| Name | Type | Required |
|---|---|---|
| where | UserSettingsWhereUniqueInput | Yes |
Update one UserSettings
// Update one UserSettings
const userSettings = await prisma.userSettings.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | UserSettingsUpdateInput | UserSettingsUncheckedUpdateInput | Yes |
| where | UserSettingsWhereUniqueInput | Yes |
Delete zero or more UserSettings
// Delete a few UserSettings
const { count } = await prisma.userSettings.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | UserSettingsWhereInput | No |
Update zero or one UserSettings
const { count } = await prisma.userSettings.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | UserSettingsUpdateManyMutationInput | UserSettingsUncheckedUpdateManyInput | Yes |
| where | UserSettingsWhereInput | No |
Create or update one UserSettings
// Update or create a UserSettings
const userSettings = await prisma.userSettings.upsert({
create: {
// ... data to create a UserSettings
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the UserSettings we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | UserSettingsWhereUniqueInput | Yes |
| create | UserSettingsCreateInput | UserSettingsUncheckedCreateInput | Yes |
| update | UserSettingsUpdateInput | UserSettingsUncheckedUpdateInput | Yes |
| Name | Value |
|---|---|
| @@id |
|
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| slug | String |
|
Yes | - |
| title | String |
|
Yes | - |
| description | String? |
|
No | - |
| created_at | DateTime |
|
Yes | - |
| updated_at | DateTime |
|
Yes | - |
| version | String? |
|
No | - |
| Ambulance | Ambulance[] |
|
Yes | - |
| BloodCenter | BloodCenter[] |
|
Yes | - |
| BloodDonation | BloodDonation[] |
|
Yes | - |
| Club | Club[] |
|
Yes | - |
| Contact | Contact[] |
|
Yes | - |
| Country | Country[] |
|
Yes | - |
| Device | Device[] |
|
Yes | - |
| Donation | Donation[] |
|
Yes | - |
| Hospital | Hospital[] |
|
Yes | - |
| Location | Location[] |
|
Yes | - |
| LoginRecord | LoginRecord[] |
|
Yes | - |
| Member | Member[] |
|
Yes | - |
| Organization | Organization[] |
|
Yes | - |
| OrganizationSettings | OrganizationSettings[] |
|
Yes | - |
| Person | Person[] |
|
Yes | - |
| Request | Request[] |
|
Yes | - |
| SecurityQuestion | SecurityQuestion[] |
|
Yes | - |
| SocialMediaLinks | SocialMediaLinks[] |
|
Yes | - |
| Support | Support[] |
|
Yes | - |
| SupportMessage | SupportMessage[] |
|
Yes | - |
| Team | Team[] |
|
Yes | - |
| TwoFactorAuth | TwoFactorAuth[] |
|
Yes | - |
| User | User[] |
|
Yes | - |
| UserRole | UserRole[] |
|
Yes | - |
| UserSettings | UserSettings[] |
|
Yes | - |
Find zero or one Version
// Get one Version
const version = await prisma.version.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | VersionWhereUniqueInput | Yes |
Find first Version
// Get one Version
const version = await prisma.version.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | VersionWhereInput | No |
| orderBy | VersionOrderByWithRelationInput[] | VersionOrderByWithRelationInput | No |
| cursor | VersionWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | VersionScalarFieldEnum | VersionScalarFieldEnum[] | No |
Find zero or more Version
// Get all Version
const Version = await prisma.version.findMany()
// Get first 10 Version
const Version = await prisma.version.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | VersionWhereInput | No |
| orderBy | VersionOrderByWithRelationInput[] | VersionOrderByWithRelationInput | No |
| cursor | VersionWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | VersionScalarFieldEnum | VersionScalarFieldEnum[] | No |
Create one Version
// Create one Version
const Version = await prisma.version.create({
data: {
// ... data to create a Version
}
})
| Name | Type | Required |
|---|---|---|
| data | VersionCreateInput | VersionUncheckedCreateInput | Yes |
Delete one Version
// Delete one Version
const Version = await prisma.version.delete({
where: {
// ... filter to delete one Version
}
})
| Name | Type | Required |
|---|---|---|
| where | VersionWhereUniqueInput | Yes |
Update one Version
// Update one Version
const version = await prisma.version.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | VersionUpdateInput | VersionUncheckedUpdateInput | Yes |
| where | VersionWhereUniqueInput | Yes |
Delete zero or more Version
// Delete a few Version
const { count } = await prisma.version.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | VersionWhereInput | No |
Update zero or one Version
const { count } = await prisma.version.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | VersionUpdateManyMutationInput | VersionUncheckedUpdateManyInput | Yes |
| where | VersionWhereInput | No |
Create or update one Version
// Update or create a Version
const version = await prisma.version.upsert({
create: {
// ... data to create a Version
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Version we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | VersionWhereUniqueInput | Yes |
| create | VersionCreateInput | VersionUncheckedCreateInput | Yes |
| update | VersionUpdateInput | VersionUncheckedUpdateInput | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | AccountWhereInput | AccountWhereInput[] | No |
| OR | AccountWhereInput[] | No |
| NOT | AccountWhereInput | AccountWhereInput[] | No |
| userId | StringNullableFilter | String | Null | Yes |
| type | StringNullableFilter | String | Null | Yes |
| provider | StringNullableFilter | String | Null | Yes |
| providerAccountId | StringNullableFilter | String | Null | Yes |
| refresh_token | StringNullableFilter | String | Null | Yes |
| access_token | StringNullableFilter | String | Null | Yes |
| expires_at | BigIntNullableFilter | BigInt | Null | Yes |
| scope | StringNullableFilter | String | Null | Yes |
| id_token | StringFilter | String | No |
| session_state | StringNullableFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| userId | SortOrder | SortOrderInput | No |
| type | SortOrder | SortOrderInput | No |
| provider | SortOrder | SortOrderInput | No |
| providerAccountId | SortOrder | SortOrderInput | No |
| refresh_token | SortOrder | SortOrderInput | No |
| access_token | SortOrder | SortOrderInput | No |
| expires_at | SortOrder | SortOrderInput | No |
| scope | SortOrder | SortOrderInput | No |
| id_token | SortOrder | No |
| session_state | SortOrder | SortOrderInput | No |
| Name | Type | Nullable |
|---|---|---|
| provider | String | No |
| providerAccountId | String | No |
| id_token | String | No |
| AND | AccountWhereInput | AccountWhereInput[] | No |
| OR | AccountWhereInput[] | No |
| NOT | AccountWhereInput | AccountWhereInput[] | No |
| userId | StringNullableFilter | String | Null | Yes |
| type | StringNullableFilter | String | Null | Yes |
| refresh_token | StringNullableFilter | String | Null | Yes |
| access_token | StringNullableFilter | String | Null | Yes |
| expires_at | BigIntNullableFilter | BigInt | Null | Yes |
| scope | StringNullableFilter | String | Null | Yes |
| session_state | StringNullableFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| userId | SortOrder | SortOrderInput | No |
| type | SortOrder | SortOrderInput | No |
| provider | SortOrder | SortOrderInput | No |
| providerAccountId | SortOrder | SortOrderInput | No |
| refresh_token | SortOrder | SortOrderInput | No |
| access_token | SortOrder | SortOrderInput | No |
| expires_at | SortOrder | SortOrderInput | No |
| scope | SortOrder | SortOrderInput | No |
| id_token | SortOrder | No |
| session_state | SortOrder | SortOrderInput | No |
| _count | AccountCountOrderByAggregateInput | No |
| _avg | AccountAvgOrderByAggregateInput | No |
| _max | AccountMaxOrderByAggregateInput | No |
| _min | AccountMinOrderByAggregateInput | No |
| _sum | AccountSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | AccountScalarWhereWithAggregatesInput | AccountScalarWhereWithAggregatesInput[] | No |
| OR | AccountScalarWhereWithAggregatesInput[] | No |
| NOT | AccountScalarWhereWithAggregatesInput | AccountScalarWhereWithAggregatesInput[] | No |
| userId | StringNullableWithAggregatesFilter | String | Null | Yes |
| type | StringNullableWithAggregatesFilter | String | Null | Yes |
| provider | StringNullableWithAggregatesFilter | String | Null | Yes |
| providerAccountId | StringNullableWithAggregatesFilter | String | Null | Yes |
| refresh_token | StringNullableWithAggregatesFilter | String | Null | Yes |
| access_token | StringNullableWithAggregatesFilter | String | Null | Yes |
| expires_at | BigIntNullableWithAggregatesFilter | BigInt | Null | Yes |
| scope | StringNullableWithAggregatesFilter | String | Null | Yes |
| id_token | StringWithAggregatesFilter | String | No |
| session_state | StringNullableWithAggregatesFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | AmbulanceWhereInput | AmbulanceWhereInput[] | No |
| OR | AmbulanceWhereInput[] | No |
| NOT | AmbulanceWhereInput | AmbulanceWhereInput[] | No |
| id | IntFilter | Int | No |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| vehicle_number | StringFilter | String | No |
| ambulance_type | StringNullableFilter | String | Null | Yes |
| person | IntFilter | Int | No |
| version | StringFilter | String | No |
| organization | IntNullableFilter | Int | Null | Yes |
| equipment | StringNullableListFilter | No |
| contact | IntNullableFilter | Int | Null | Yes |
| color | StringNullableFilter | String | Null | Yes |
| Contact | ContactNullableRelationFilter | ContactWhereInput | Null | Yes |
| Organization | OrganizationNullableRelationFilter | OrganizationWhereInput | Null | Yes |
| Person | PersonRelationFilter | PersonWhereInput | No |
| Version | VersionRelationFilter | VersionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| vehicle_number | SortOrder | No |
| ambulance_type | SortOrder | SortOrderInput | No |
| person | SortOrder | No |
| version | SortOrder | No |
| organization | SortOrder | SortOrderInput | No |
| equipment | SortOrder | No |
| contact | SortOrder | SortOrderInput | No |
| color | SortOrder | SortOrderInput | No |
| Contact | ContactOrderByWithRelationInput | No |
| Organization | OrganizationOrderByWithRelationInput | No |
| Person | PersonOrderByWithRelationInput | No |
| Version | VersionOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| AND | AmbulanceWhereInput | AmbulanceWhereInput[] | No |
| OR | AmbulanceWhereInput[] | No |
| NOT | AmbulanceWhereInput | AmbulanceWhereInput[] | No |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| vehicle_number | StringFilter | String | No |
| ambulance_type | StringNullableFilter | String | Null | Yes |
| person | IntFilter | Int | No |
| version | StringFilter | String | No |
| organization | IntNullableFilter | Int | Null | Yes |
| equipment | StringNullableListFilter | No |
| contact | IntNullableFilter | Int | Null | Yes |
| color | StringNullableFilter | String | Null | Yes |
| Contact | ContactNullableRelationFilter | ContactWhereInput | Null | Yes |
| Organization | OrganizationNullableRelationFilter | OrganizationWhereInput | Null | Yes |
| Person | PersonRelationFilter | PersonWhereInput | No |
| Version | VersionRelationFilter | VersionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| vehicle_number | SortOrder | No |
| ambulance_type | SortOrder | SortOrderInput | No |
| person | SortOrder | No |
| version | SortOrder | No |
| organization | SortOrder | SortOrderInput | No |
| equipment | SortOrder | No |
| contact | SortOrder | SortOrderInput | No |
| color | SortOrder | SortOrderInput | No |
| _count | AmbulanceCountOrderByAggregateInput | No |
| _avg | AmbulanceAvgOrderByAggregateInput | No |
| _max | AmbulanceMaxOrderByAggregateInput | No |
| _min | AmbulanceMinOrderByAggregateInput | No |
| _sum | AmbulanceSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | AmbulanceScalarWhereWithAggregatesInput | AmbulanceScalarWhereWithAggregatesInput[] | No |
| OR | AmbulanceScalarWhereWithAggregatesInput[] | No |
| NOT | AmbulanceScalarWhereWithAggregatesInput | AmbulanceScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| created_at | DateTimeWithAggregatesFilter | DateTime | No |
| updated_at | DateTimeWithAggregatesFilter | DateTime | No |
| vehicle_number | StringWithAggregatesFilter | String | No |
| ambulance_type | StringNullableWithAggregatesFilter | String | Null | Yes |
| person | IntWithAggregatesFilter | Int | No |
| version | StringWithAggregatesFilter | String | No |
| organization | IntNullableWithAggregatesFilter | Int | Null | Yes |
| equipment | StringNullableListFilter | No |
| contact | IntNullableWithAggregatesFilter | Int | Null | Yes |
| color | StringNullableWithAggregatesFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | BloodCenterWhereInput | BloodCenterWhereInput[] | No |
| OR | BloodCenterWhereInput[] | No |
| NOT | BloodCenterWhereInput | BloodCenterWhereInput[] | No |
| id | IntFilter | Int | No |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| established_at | DateTimeFilter | DateTime | No |
| version | StringFilter | String | No |
| founder | IntFilter | Int | No |
| contact | IntNullableFilter | Int | Null | Yes |
| title | StringFilter | String | No |
| Contact_BloodCenter_contactToContact | ContactNullableRelationFilter | ContactWhereInput | Null | Yes |
| Person | PersonRelationFilter | PersonWhereInput | No |
| Version | VersionRelationFilter | VersionWhereInput | No |
| BloodDonation | BloodDonationListRelationFilter | No |
| Contact_Contact_blood_centerToBloodCenter | ContactListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| established_at | SortOrder | No |
| version | SortOrder | No |
| founder | SortOrder | No |
| contact | SortOrder | SortOrderInput | No |
| title | SortOrder | No |
| Contact_BloodCenter_contactToContact | ContactOrderByWithRelationInput | No |
| Person | PersonOrderByWithRelationInput | No |
| Version | VersionOrderByWithRelationInput | No |
| BloodDonation | BloodDonationOrderByRelationAggregateInput | No |
| Contact_Contact_blood_centerToBloodCenter | ContactOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| AND | BloodCenterWhereInput | BloodCenterWhereInput[] | No |
| OR | BloodCenterWhereInput[] | No |
| NOT | BloodCenterWhereInput | BloodCenterWhereInput[] | No |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| established_at | DateTimeFilter | DateTime | No |
| version | StringFilter | String | No |
| founder | IntFilter | Int | No |
| contact | IntNullableFilter | Int | Null | Yes |
| title | StringFilter | String | No |
| Contact_BloodCenter_contactToContact | ContactNullableRelationFilter | ContactWhereInput | Null | Yes |
| Person | PersonRelationFilter | PersonWhereInput | No |
| Version | VersionRelationFilter | VersionWhereInput | No |
| BloodDonation | BloodDonationListRelationFilter | No |
| Contact_Contact_blood_centerToBloodCenter | ContactListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| established_at | SortOrder | No |
| version | SortOrder | No |
| founder | SortOrder | No |
| contact | SortOrder | SortOrderInput | No |
| title | SortOrder | No |
| _count | BloodCenterCountOrderByAggregateInput | No |
| _avg | BloodCenterAvgOrderByAggregateInput | No |
| _max | BloodCenterMaxOrderByAggregateInput | No |
| _min | BloodCenterMinOrderByAggregateInput | No |
| _sum | BloodCenterSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | BloodCenterScalarWhereWithAggregatesInput | BloodCenterScalarWhereWithAggregatesInput[] | No |
| OR | BloodCenterScalarWhereWithAggregatesInput[] | No |
| NOT | BloodCenterScalarWhereWithAggregatesInput | BloodCenterScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| created_at | DateTimeWithAggregatesFilter | DateTime | No |
| updated_at | DateTimeWithAggregatesFilter | DateTime | No |
| established_at | DateTimeWithAggregatesFilter | DateTime | No |
| version | StringWithAggregatesFilter | String | No |
| founder | IntWithAggregatesFilter | Int | No |
| contact | IntNullableWithAggregatesFilter | Int | Null | Yes |
| title | StringWithAggregatesFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| donor_id | SortOrder | No |
| organization_id | SortOrder | No |
| amount | SortOrder | No |
| version | SortOrder | No |
| donated_at | SortOrder | No |
| referred_by | SortOrder | SortOrderInput | No |
| test_done | SortOrder | SortOrderInput | No |
| bags | SortOrder | No |
| media_done | SortOrder | SortOrderInput | No |
| media_used | SortOrder | SortOrderInput | No |
| incubation | SortOrder | SortOrderInput | No |
| note | SortOrder | SortOrderInput | No |
| created_at | SortOrder | SortOrderInput | No |
| updated_at | SortOrder | SortOrderInput | No |
| cabin_no | SortOrder | SortOrderInput | No |
| reg_no | SortOrder | SortOrderInput | No |
| BloodCenter | BloodCenterOrderByWithRelationInput | No |
| Person | PersonOrderByWithRelationInput | No |
| Version | VersionOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| donor_id | SortOrder | No |
| organization_id | SortOrder | No |
| amount | SortOrder | No |
| version | SortOrder | No |
| donated_at | SortOrder | No |
| referred_by | SortOrder | SortOrderInput | No |
| test_done | SortOrder | SortOrderInput | No |
| bags | SortOrder | No |
| media_done | SortOrder | SortOrderInput | No |
| media_used | SortOrder | SortOrderInput | No |
| incubation | SortOrder | SortOrderInput | No |
| note | SortOrder | SortOrderInput | No |
| created_at | SortOrder | SortOrderInput | No |
| updated_at | SortOrder | SortOrderInput | No |
| cabin_no | SortOrder | SortOrderInput | No |
| reg_no | SortOrder | SortOrderInput | No |
| _count | BloodDonationCountOrderByAggregateInput | No |
| _avg | BloodDonationAvgOrderByAggregateInput | No |
| _max | BloodDonationMaxOrderByAggregateInput | No |
| _min | BloodDonationMinOrderByAggregateInput | No |
| _sum | BloodDonationSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ClubWhereInput | ClubWhereInput[] | No |
| OR | ClubWhereInput[] | No |
| NOT | ClubWhereInput | ClubWhereInput[] | No |
| id | IntFilter | Int | No |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| name | StringFilter | String | No |
| established_at | DateTimeFilter | DateTime | No |
| contact | IntFilter | Int | No |
| version | StringFilter | String | No |
| chairman | IntFilter | Int | No |
| founder | IntFilter | Int | No |
| vice_chairman | IntFilter | Int | No |
| Person_Club_chairmanToPerson | PersonRelationFilter | PersonWhereInput | No |
| Contact_Club_contactToContact | ContactRelationFilter | ContactWhereInput | No |
| Person_Club_founderToPerson | PersonRelationFilter | PersonWhereInput | No |
| Version | VersionRelationFilter | VersionWhereInput | No |
| Person_Club_vice_chairmanToPerson | PersonRelationFilter | PersonWhereInput | No |
| Contact_Contact_clubToClub | ContactListRelationFilter | No |
| Member | MemberListRelationFilter | No |
| Organization | OrganizationListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| name | SortOrder | No |
| established_at | SortOrder | No |
| contact | SortOrder | No |
| version | SortOrder | No |
| chairman | SortOrder | No |
| founder | SortOrder | No |
| vice_chairman | SortOrder | No |
| Person_Club_chairmanToPerson | PersonOrderByWithRelationInput | No |
| Contact_Club_contactToContact | ContactOrderByWithRelationInput | No |
| Person_Club_founderToPerson | PersonOrderByWithRelationInput | No |
| Version | VersionOrderByWithRelationInput | No |
| Person_Club_vice_chairmanToPerson | PersonOrderByWithRelationInput | No |
| Contact_Contact_clubToClub | ContactOrderByRelationAggregateInput | No |
| Member | MemberOrderByRelationAggregateInput | No |
| Organization | OrganizationOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| AND | ClubWhereInput | ClubWhereInput[] | No |
| OR | ClubWhereInput[] | No |
| NOT | ClubWhereInput | ClubWhereInput[] | No |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| name | StringFilter | String | No |
| established_at | DateTimeFilter | DateTime | No |
| contact | IntFilter | Int | No |
| version | StringFilter | String | No |
| chairman | IntFilter | Int | No |
| founder | IntFilter | Int | No |
| vice_chairman | IntFilter | Int | No |
| Person_Club_chairmanToPerson | PersonRelationFilter | PersonWhereInput | No |
| Contact_Club_contactToContact | ContactRelationFilter | ContactWhereInput | No |
| Person_Club_founderToPerson | PersonRelationFilter | PersonWhereInput | No |
| Version | VersionRelationFilter | VersionWhereInput | No |
| Person_Club_vice_chairmanToPerson | PersonRelationFilter | PersonWhereInput | No |
| Contact_Contact_clubToClub | ContactListRelationFilter | No |
| Member | MemberListRelationFilter | No |
| Organization | OrganizationListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| name | SortOrder | No |
| established_at | SortOrder | No |
| contact | SortOrder | No |
| version | SortOrder | No |
| chairman | SortOrder | No |
| founder | SortOrder | No |
| vice_chairman | SortOrder | No |
| _count | ClubCountOrderByAggregateInput | No |
| _avg | ClubAvgOrderByAggregateInput | No |
| _max | ClubMaxOrderByAggregateInput | No |
| _min | ClubMinOrderByAggregateInput | No |
| _sum | ClubSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ClubScalarWhereWithAggregatesInput | ClubScalarWhereWithAggregatesInput[] | No |
| OR | ClubScalarWhereWithAggregatesInput[] | No |
| NOT | ClubScalarWhereWithAggregatesInput | ClubScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| created_at | DateTimeWithAggregatesFilter | DateTime | No |
| updated_at | DateTimeWithAggregatesFilter | DateTime | No |
| name | StringWithAggregatesFilter | String | No |
| established_at | DateTimeWithAggregatesFilter | DateTime | No |
| contact | IntWithAggregatesFilter | Int | No |
| version | StringWithAggregatesFilter | String | No |
| chairman | IntWithAggregatesFilter | Int | No |
| founder | IntWithAggregatesFilter | Int | No |
| vice_chairman | IntWithAggregatesFilter | Int | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ContactWhereInput | ContactWhereInput[] | No |
| OR | ContactWhereInput[] | No |
| NOT | ContactWhereInput | ContactWhereInput[] | No |
| id | IntFilter | Int | No |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| address_line | StringFilter | String | No |
| address_line_1 | StringNullableFilter | String | Null | Yes |
| state | StringFilter | String | No |
| city | StringFilter | String | No |
| zip | StringFilter | String | No |
| phone | StringFilter | String | No |
| phone_1 | StringNullableFilter | String | Null | Yes |
| fax | StringNullableFilter | String | Null | Yes |
| StringNullableFilter | String | Null | Yes | |
| email_1 | StringNullableFilter | String | Null | Yes |
| website | StringNullableFilter | String | Null | Yes |
| social_media | JsonNullableFilter | No |
| version | StringFilter | String | No |
| country | StringNullableFilter | String | Null | Yes |
| person | IntNullableFilter | Int | Null | Yes |
| club | IntNullableFilter | Int | Null | Yes |
| blood_center | IntNullableFilter | Int | Null | Yes |
| donation | IntNullableFilter | Int | Null | Yes |
| hospital | IntNullableFilter | Int | Null | Yes |
| Ambulance | AmbulanceListRelationFilter | No |
| BloodCenter_BloodCenter_contactToContact | BloodCenterListRelationFilter | No |
| Club_Club_contactToContact | ClubListRelationFilter | No |
| BloodCenter_Contact_blood_centerToBloodCenter | BloodCenterNullableRelationFilter | BloodCenterWhereInput | Null | Yes |
| Club_Contact_clubToClub | ClubNullableRelationFilter | ClubWhereInput | Null | Yes |
| Country | CountryNullableRelationFilter | CountryWhereInput | Null | Yes |
| Donation | DonationNullableRelationFilter | DonationWhereInput | Null | Yes |
| Hospital_Contact_hospitalToHospital | HospitalNullableRelationFilter | HospitalWhereInput | Null | Yes |
| Person_Contact_personToPerson | PersonNullableRelationFilter | PersonWhereInput | Null | Yes |
| Version | VersionRelationFilter | VersionWhereInput | No |
| Hospital_Hospital_contactToContact | HospitalListRelationFilter | No |
| Person_Person_contact_idToContact | PersonListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| AND | ContactWhereInput | ContactWhereInput[] | No |
| OR | ContactWhereInput[] | No |
| NOT | ContactWhereInput | ContactWhereInput[] | No |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| address_line | StringFilter | String | No |
| address_line_1 | StringNullableFilter | String | Null | Yes |
| state | StringFilter | String | No |
| city | StringFilter | String | No |
| zip | StringFilter | String | No |
| phone | StringFilter | String | No |
| phone_1 | StringNullableFilter | String | Null | Yes |
| fax | StringNullableFilter | String | Null | Yes |
| StringNullableFilter | String | Null | Yes | |
| email_1 | StringNullableFilter | String | Null | Yes |
| website | StringNullableFilter | String | Null | Yes |
| social_media | JsonNullableFilter | No |
| version | StringFilter | String | No |
| country | StringNullableFilter | String | Null | Yes |
| person | IntNullableFilter | Int | Null | Yes |
| club | IntNullableFilter | Int | Null | Yes |
| blood_center | IntNullableFilter | Int | Null | Yes |
| donation | IntNullableFilter | Int | Null | Yes |
| hospital | IntNullableFilter | Int | Null | Yes |
| Ambulance | AmbulanceListRelationFilter | No |
| BloodCenter_BloodCenter_contactToContact | BloodCenterListRelationFilter | No |
| Club_Club_contactToContact | ClubListRelationFilter | No |
| BloodCenter_Contact_blood_centerToBloodCenter | BloodCenterNullableRelationFilter | BloodCenterWhereInput | Null | Yes |
| Club_Contact_clubToClub | ClubNullableRelationFilter | ClubWhereInput | Null | Yes |
| Country | CountryNullableRelationFilter | CountryWhereInput | Null | Yes |
| Donation | DonationNullableRelationFilter | DonationWhereInput | Null | Yes |
| Hospital_Contact_hospitalToHospital | HospitalNullableRelationFilter | HospitalWhereInput | Null | Yes |
| Person_Contact_personToPerson | PersonNullableRelationFilter | PersonWhereInput | Null | Yes |
| Version | VersionRelationFilter | VersionWhereInput | No |
| Hospital_Hospital_contactToContact | HospitalListRelationFilter | No |
| Person_Person_contact_idToContact | PersonListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| address_line | SortOrder | No |
| address_line_1 | SortOrder | SortOrderInput | No |
| state | SortOrder | No |
| city | SortOrder | No |
| zip | SortOrder | No |
| phone | SortOrder | No |
| phone_1 | SortOrder | SortOrderInput | No |
| fax | SortOrder | SortOrderInput | No |
| SortOrder | SortOrderInput | No | |
| email_1 | SortOrder | SortOrderInput | No |
| website | SortOrder | SortOrderInput | No |
| social_media | SortOrder | SortOrderInput | No |
| version | SortOrder | No |
| country | SortOrder | SortOrderInput | No |
| person | SortOrder | SortOrderInput | No |
| club | SortOrder | SortOrderInput | No |
| blood_center | SortOrder | SortOrderInput | No |
| donation | SortOrder | SortOrderInput | No |
| hospital | SortOrder | SortOrderInput | No |
| _count | ContactCountOrderByAggregateInput | No |
| _avg | ContactAvgOrderByAggregateInput | No |
| _max | ContactMaxOrderByAggregateInput | No |
| _min | ContactMinOrderByAggregateInput | No |
| _sum | ContactSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | CountryWhereInput | CountryWhereInput[] | No |
| OR | CountryWhereInput[] | No |
| NOT | CountryWhereInput | CountryWhereInput[] | No |
| alpha_3 | StringFilter | String | No |
| alpha_2 | StringFilter | String | No |
| numeric | StringFilter | String | No |
| name | StringFilter | String | No |
| version | StringFilter | String | No |
| created_at | DateTimeNullableFilter | DateTime | Null | Yes |
| updated_at | DateTimeNullableFilter | DateTime | Null | Yes |
| Contact | ContactListRelationFilter | No |
| Version | VersionRelationFilter | VersionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| alpha_3 | SortOrder | No |
| alpha_2 | SortOrder | No |
| numeric | SortOrder | No |
| name | SortOrder | No |
| version | SortOrder | No |
| created_at | SortOrder | SortOrderInput | No |
| updated_at | SortOrder | SortOrderInput | No |
| Contact | ContactOrderByRelationAggregateInput | No |
| Version | VersionOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| alpha_3 | String | No |
| alpha_2 | String | No |
| alpha_3_alpha_2_numeric_name | CountryAlpha_3Alpha_2NumericNameCompoundUniqueInput | No |
| AND | CountryWhereInput | CountryWhereInput[] | No |
| OR | CountryWhereInput[] | No |
| NOT | CountryWhereInput | CountryWhereInput[] | No |
| numeric | StringFilter | String | No |
| name | StringFilter | String | No |
| version | StringFilter | String | No |
| created_at | DateTimeNullableFilter | DateTime | Null | Yes |
| updated_at | DateTimeNullableFilter | DateTime | Null | Yes |
| Contact | ContactListRelationFilter | No |
| Version | VersionRelationFilter | VersionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| alpha_3 | SortOrder | No |
| alpha_2 | SortOrder | No |
| numeric | SortOrder | No |
| name | SortOrder | No |
| version | SortOrder | No |
| created_at | SortOrder | SortOrderInput | No |
| updated_at | SortOrder | SortOrderInput | No |
| _count | CountryCountOrderByAggregateInput | No |
| _max | CountryMaxOrderByAggregateInput | No |
| _min | CountryMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | CountryScalarWhereWithAggregatesInput | CountryScalarWhereWithAggregatesInput[] | No |
| OR | CountryScalarWhereWithAggregatesInput[] | No |
| NOT | CountryScalarWhereWithAggregatesInput | CountryScalarWhereWithAggregatesInput[] | No |
| alpha_3 | StringWithAggregatesFilter | String | No |
| alpha_2 | StringWithAggregatesFilter | String | No |
| numeric | StringWithAggregatesFilter | String | No |
| name | StringWithAggregatesFilter | String | No |
| version | StringWithAggregatesFilter | String | No |
| created_at | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
| updated_at | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | DeviceWhereInput | DeviceWhereInput[] | No |
| OR | DeviceWhereInput[] | No |
| NOT | DeviceWhereInput | DeviceWhereInput[] | No |
| id | IntFilter | Int | No |
| created_at | DateTimeNullableFilter | DateTime | Null | Yes |
| updated_at | DateTimeNullableFilter | DateTime | Null | Yes |
| name | StringNullableFilter | String | Null | Yes |
| mac_address | StringNullableFilter | String | Null | Yes |
| model | StringNullableFilter | String | Null | Yes |
| os | StringNullableFilter | String | Null | Yes |
| os_version | StringNullableFilter | String | Null | Yes |
| device_id | StringNullableFilter | String | Null | Yes |
| brand | StringNullableFilter | String | Null | Yes |
| manufacturer | StringNullableFilter | String | Null | Yes |
| version | StringFilter | String | No |
| Version | VersionRelationFilter | VersionWhereInput | No |
| LoginRecord | LoginRecordListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| created_at | SortOrder | SortOrderInput | No |
| updated_at | SortOrder | SortOrderInput | No |
| name | SortOrder | SortOrderInput | No |
| mac_address | SortOrder | SortOrderInput | No |
| model | SortOrder | SortOrderInput | No |
| os | SortOrder | SortOrderInput | No |
| os_version | SortOrder | SortOrderInput | No |
| device_id | SortOrder | SortOrderInput | No |
| brand | SortOrder | SortOrderInput | No |
| manufacturer | SortOrder | SortOrderInput | No |
| version | SortOrder | No |
| Version | VersionOrderByWithRelationInput | No |
| LoginRecord | LoginRecordOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| AND | DeviceWhereInput | DeviceWhereInput[] | No |
| OR | DeviceWhereInput[] | No |
| NOT | DeviceWhereInput | DeviceWhereInput[] | No |
| created_at | DateTimeNullableFilter | DateTime | Null | Yes |
| updated_at | DateTimeNullableFilter | DateTime | Null | Yes |
| name | StringNullableFilter | String | Null | Yes |
| mac_address | StringNullableFilter | String | Null | Yes |
| model | StringNullableFilter | String | Null | Yes |
| os | StringNullableFilter | String | Null | Yes |
| os_version | StringNullableFilter | String | Null | Yes |
| device_id | StringNullableFilter | String | Null | Yes |
| brand | StringNullableFilter | String | Null | Yes |
| manufacturer | StringNullableFilter | String | Null | Yes |
| version | StringFilter | String | No |
| Version | VersionRelationFilter | VersionWhereInput | No |
| LoginRecord | LoginRecordListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| created_at | SortOrder | SortOrderInput | No |
| updated_at | SortOrder | SortOrderInput | No |
| name | SortOrder | SortOrderInput | No |
| mac_address | SortOrder | SortOrderInput | No |
| model | SortOrder | SortOrderInput | No |
| os | SortOrder | SortOrderInput | No |
| os_version | SortOrder | SortOrderInput | No |
| device_id | SortOrder | SortOrderInput | No |
| brand | SortOrder | SortOrderInput | No |
| manufacturer | SortOrder | SortOrderInput | No |
| version | SortOrder | No |
| _count | DeviceCountOrderByAggregateInput | No |
| _avg | DeviceAvgOrderByAggregateInput | No |
| _max | DeviceMaxOrderByAggregateInput | No |
| _min | DeviceMinOrderByAggregateInput | No |
| _sum | DeviceSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | DeviceScalarWhereWithAggregatesInput | DeviceScalarWhereWithAggregatesInput[] | No |
| OR | DeviceScalarWhereWithAggregatesInput[] | No |
| NOT | DeviceScalarWhereWithAggregatesInput | DeviceScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| created_at | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
| updated_at | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
| name | StringNullableWithAggregatesFilter | String | Null | Yes |
| mac_address | StringNullableWithAggregatesFilter | String | Null | Yes |
| model | StringNullableWithAggregatesFilter | String | Null | Yes |
| os | StringNullableWithAggregatesFilter | String | Null | Yes |
| os_version | StringNullableWithAggregatesFilter | String | Null | Yes |
| device_id | StringNullableWithAggregatesFilter | String | Null | Yes |
| brand | StringNullableWithAggregatesFilter | String | Null | Yes |
| manufacturer | StringNullableWithAggregatesFilter | String | Null | Yes |
| version | StringWithAggregatesFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| AND | DonationWhereInput | DonationWhereInput[] | No |
| OR | DonationWhereInput[] | No |
| NOT | DonationWhereInput | DonationWhereInput[] | No |
| id | IntFilter | Int | No |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| amount | IntFilter | Int | No |
| donated_at | DateTimeFilter | DateTime | No |
| version | StringFilter | String | No |
| person | IntFilter | Int | No |
| member | IntFilter | Int | No |
| organization | IntFilter | Int | No |
| Contact | ContactListRelationFilter | No |
| Member | MemberRelationFilter | MemberWhereInput | No |
| Organization | OrganizationRelationFilter | OrganizationWhereInput | No |
| Person | PersonRelationFilter | PersonWhereInput | No |
| Version | VersionRelationFilter | VersionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| amount | SortOrder | No |
| donated_at | SortOrder | No |
| version | SortOrder | No |
| person | SortOrder | No |
| member | SortOrder | No |
| organization | SortOrder | No |
| Contact | ContactOrderByRelationAggregateInput | No |
| Member | MemberOrderByWithRelationInput | No |
| Organization | OrganizationOrderByWithRelationInput | No |
| Person | PersonOrderByWithRelationInput | No |
| Version | VersionOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| AND | DonationWhereInput | DonationWhereInput[] | No |
| OR | DonationWhereInput[] | No |
| NOT | DonationWhereInput | DonationWhereInput[] | No |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| amount | IntFilter | Int | No |
| donated_at | DateTimeFilter | DateTime | No |
| version | StringFilter | String | No |
| person | IntFilter | Int | No |
| member | IntFilter | Int | No |
| organization | IntFilter | Int | No |
| Contact | ContactListRelationFilter | No |
| Member | MemberRelationFilter | MemberWhereInput | No |
| Organization | OrganizationRelationFilter | OrganizationWhereInput | No |
| Person | PersonRelationFilter | PersonWhereInput | No |
| Version | VersionRelationFilter | VersionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| amount | SortOrder | No |
| donated_at | SortOrder | No |
| version | SortOrder | No |
| person | SortOrder | No |
| member | SortOrder | No |
| organization | SortOrder | No |
| _count | DonationCountOrderByAggregateInput | No |
| _avg | DonationAvgOrderByAggregateInput | No |
| _max | DonationMaxOrderByAggregateInput | No |
| _min | DonationMinOrderByAggregateInput | No |
| _sum | DonationSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | DonationScalarWhereWithAggregatesInput | DonationScalarWhereWithAggregatesInput[] | No |
| OR | DonationScalarWhereWithAggregatesInput[] | No |
| NOT | DonationScalarWhereWithAggregatesInput | DonationScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| created_at | DateTimeWithAggregatesFilter | DateTime | No |
| updated_at | DateTimeWithAggregatesFilter | DateTime | No |
| amount | IntWithAggregatesFilter | Int | No |
| donated_at | DateTimeWithAggregatesFilter | DateTime | No |
| version | StringWithAggregatesFilter | String | No |
| person | IntWithAggregatesFilter | Int | No |
| member | IntWithAggregatesFilter | Int | No |
| organization | IntWithAggregatesFilter | Int | No |
| Name | Type | Nullable |
|---|---|---|
| AND | HospitalWhereInput | HospitalWhereInput[] | No |
| OR | HospitalWhereInput[] | No |
| NOT | HospitalWhereInput | HospitalWhereInput[] | No |
| id | IntFilter | Int | No |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| name | StringFilter | String | No |
| founded_at | DateTimeFilter | DateTime | No |
| accreditation | StringNullableFilter | String | Null | Yes |
| bed_count | IntNullableFilter | Int | Null | Yes |
| emergency_room | BoolNullableFilter | Boolean | Null | Yes |
| services | StringNullableListFilter | No |
| specialties | StringNullableListFilter | No |
| rating | FloatNullableFilter | Float | Null | Yes |
| facility_type | EnumFacilityTypeNullableFilter | FacilityType | Null | Yes |
| ownership | StringNullableFilter | String | Null | Yes |
| insurance_accepted | StringNullableFilter | String | Null | Yes |
| operating_hours | StringNullableFilter | String | Null | Yes |
| infrastructure | StringNullableFilter | String | Null | Yes |
| security_controls | StringNullableFilter | String | Null | Yes |
| version | StringFilter | String | No |
| location | IntNullableFilter | Int | Null | Yes |
| contact | IntNullableFilter | Int | Null | Yes |
| founder | IntNullableFilter | Int | Null | Yes |
| director | IntNullableFilter | Int | Null | Yes |
| chairman | IntNullableFilter | Int | Null | Yes |
| Contact_Contact_hospitalToHospital | ContactListRelationFilter | No |
| Contact_Hospital_contactToContact | ContactNullableRelationFilter | ContactWhereInput | Null | Yes |
| Location | LocationNullableRelationFilter | LocationWhereInput | Null | Yes |
| Version | VersionRelationFilter | VersionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| AND | HospitalWhereInput | HospitalWhereInput[] | No |
| OR | HospitalWhereInput[] | No |
| NOT | HospitalWhereInput | HospitalWhereInput[] | No |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| name | StringFilter | String | No |
| founded_at | DateTimeFilter | DateTime | No |
| accreditation | StringNullableFilter | String | Null | Yes |
| bed_count | IntNullableFilter | Int | Null | Yes |
| emergency_room | BoolNullableFilter | Boolean | Null | Yes |
| services | StringNullableListFilter | No |
| specialties | StringNullableListFilter | No |
| rating | FloatNullableFilter | Float | Null | Yes |
| facility_type | EnumFacilityTypeNullableFilter | FacilityType | Null | Yes |
| ownership | StringNullableFilter | String | Null | Yes |
| insurance_accepted | StringNullableFilter | String | Null | Yes |
| operating_hours | StringNullableFilter | String | Null | Yes |
| infrastructure | StringNullableFilter | String | Null | Yes |
| security_controls | StringNullableFilter | String | Null | Yes |
| version | StringFilter | String | No |
| location | IntNullableFilter | Int | Null | Yes |
| contact | IntNullableFilter | Int | Null | Yes |
| founder | IntNullableFilter | Int | Null | Yes |
| director | IntNullableFilter | Int | Null | Yes |
| chairman | IntNullableFilter | Int | Null | Yes |
| Contact_Contact_hospitalToHospital | ContactListRelationFilter | No |
| Contact_Hospital_contactToContact | ContactNullableRelationFilter | ContactWhereInput | Null | Yes |
| Location | LocationNullableRelationFilter | LocationWhereInput | Null | Yes |
| Version | VersionRelationFilter | VersionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | LocationWhereInput | LocationWhereInput[] | No |
| OR | LocationWhereInput[] | No |
| NOT | LocationWhereInput | LocationWhereInput[] | No |
| id | IntFilter | Int | No |
| latitude | FloatFilter | Float | No |
| longitude | FloatFilter | Float | No |
| version | StringFilter | String | No |
| created_at | DateTimeNullableFilter | DateTime | Null | Yes |
| updated_at | DateTimeNullableFilter | DateTime | Null | Yes |
| Hospital | HospitalListRelationFilter | No |
| Version | VersionRelationFilter | VersionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| latitude | SortOrder | No |
| longitude | SortOrder | No |
| version | SortOrder | No |
| created_at | SortOrder | SortOrderInput | No |
| updated_at | SortOrder | SortOrderInput | No |
| Hospital | HospitalOrderByRelationAggregateInput | No |
| Version | VersionOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| AND | LocationWhereInput | LocationWhereInput[] | No |
| OR | LocationWhereInput[] | No |
| NOT | LocationWhereInput | LocationWhereInput[] | No |
| latitude | FloatFilter | Float | No |
| longitude | FloatFilter | Float | No |
| version | StringFilter | String | No |
| created_at | DateTimeNullableFilter | DateTime | Null | Yes |
| updated_at | DateTimeNullableFilter | DateTime | Null | Yes |
| Hospital | HospitalListRelationFilter | No |
| Version | VersionRelationFilter | VersionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| latitude | SortOrder | No |
| longitude | SortOrder | No |
| version | SortOrder | No |
| created_at | SortOrder | SortOrderInput | No |
| updated_at | SortOrder | SortOrderInput | No |
| _count | LocationCountOrderByAggregateInput | No |
| _avg | LocationAvgOrderByAggregateInput | No |
| _max | LocationMaxOrderByAggregateInput | No |
| _min | LocationMinOrderByAggregateInput | No |
| _sum | LocationSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | LocationScalarWhereWithAggregatesInput | LocationScalarWhereWithAggregatesInput[] | No |
| OR | LocationScalarWhereWithAggregatesInput[] | No |
| NOT | LocationScalarWhereWithAggregatesInput | LocationScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| latitude | FloatWithAggregatesFilter | Float | No |
| longitude | FloatWithAggregatesFilter | Float | No |
| version | StringWithAggregatesFilter | String | No |
| created_at | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
| updated_at | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| user | SortOrder | No |
| ip_address | SortOrder | No |
| user_agent | SortOrder | No |
| login_status | SortOrder | No |
| session_id | SortOrder | SortOrderInput | No |
| location | SortOrder | SortOrderInput | No |
| authentication | SortOrder | SortOrderInput | No |
| security_tokens | SortOrder | SortOrderInput | No |
| logout_timestamp | SortOrder | SortOrderInput | No |
| version | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| devices | SortOrder | SortOrderInput | No |
| Device | DeviceOrderByWithRelationInput | No |
| Version | VersionOrderByWithRelationInput | No |
| OrganizationSettings | OrganizationSettingsOrderByRelationAggregateInput | No |
| User | UserOrderByRelationAggregateInput | No |
| UserSettings | UserSettingsOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| user | SortOrder | No |
| ip_address | SortOrder | No |
| user_agent | SortOrder | No |
| login_status | SortOrder | No |
| session_id | SortOrder | SortOrderInput | No |
| location | SortOrder | SortOrderInput | No |
| authentication | SortOrder | SortOrderInput | No |
| security_tokens | SortOrder | SortOrderInput | No |
| logout_timestamp | SortOrder | SortOrderInput | No |
| version | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| devices | SortOrder | SortOrderInput | No |
| _count | LoginRecordCountOrderByAggregateInput | No |
| _avg | LoginRecordAvgOrderByAggregateInput | No |
| _max | LoginRecordMaxOrderByAggregateInput | No |
| _min | LoginRecordMinOrderByAggregateInput | No |
| _sum | LoginRecordSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | MemberWhereInput | MemberWhereInput[] | No |
| OR | MemberWhereInput[] | No |
| NOT | MemberWhereInput | MemberWhereInput[] | No |
| id | IntFilter | Int | No |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| version | StringFilter | String | No |
| allergies | StringNullableFilter | String | Null | Yes |
| complications | StringNullableFilter | String | Null | Yes |
| medications | StringNullableFilter | String | Null | Yes |
| blood_disorders | StringNullableFilter | String | Null | Yes |
| club_id | IntNullableFilter | Int | Null | Yes |
| infectious_diseases | StringNullableFilter | String | Null | Yes |
| last_blood_donation | DateTimeNullableFilter | DateTime | Null | Yes |
| medical_conditions | StringNullableFilter | String | Null | Yes |
| person_id | IntNullableFilter | Int | Null | Yes |
| Donation | DonationListRelationFilter | No |
| Club | ClubNullableRelationFilter | ClubWhereInput | Null | Yes |
| Person | PersonNullableRelationFilter | PersonWhereInput | Null | Yes |
| Version | VersionRelationFilter | VersionWhereInput | No |
| Request | RequestListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| version | SortOrder | No |
| allergies | SortOrder | SortOrderInput | No |
| complications | SortOrder | SortOrderInput | No |
| medications | SortOrder | SortOrderInput | No |
| blood_disorders | SortOrder | SortOrderInput | No |
| club_id | SortOrder | SortOrderInput | No |
| infectious_diseases | SortOrder | SortOrderInput | No |
| last_blood_donation | SortOrder | SortOrderInput | No |
| medical_conditions | SortOrder | SortOrderInput | No |
| person_id | SortOrder | SortOrderInput | No |
| Donation | DonationOrderByRelationAggregateInput | No |
| Club | ClubOrderByWithRelationInput | No |
| Person | PersonOrderByWithRelationInput | No |
| Version | VersionOrderByWithRelationInput | No |
| Request | RequestOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| AND | MemberWhereInput | MemberWhereInput[] | No |
| OR | MemberWhereInput[] | No |
| NOT | MemberWhereInput | MemberWhereInput[] | No |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| version | StringFilter | String | No |
| allergies | StringNullableFilter | String | Null | Yes |
| complications | StringNullableFilter | String | Null | Yes |
| medications | StringNullableFilter | String | Null | Yes |
| blood_disorders | StringNullableFilter | String | Null | Yes |
| club_id | IntNullableFilter | Int | Null | Yes |
| infectious_diseases | StringNullableFilter | String | Null | Yes |
| last_blood_donation | DateTimeNullableFilter | DateTime | Null | Yes |
| medical_conditions | StringNullableFilter | String | Null | Yes |
| person_id | IntNullableFilter | Int | Null | Yes |
| Donation | DonationListRelationFilter | No |
| Club | ClubNullableRelationFilter | ClubWhereInput | Null | Yes |
| Person | PersonNullableRelationFilter | PersonWhereInput | Null | Yes |
| Version | VersionRelationFilter | VersionWhereInput | No |
| Request | RequestListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| version | SortOrder | No |
| allergies | SortOrder | SortOrderInput | No |
| complications | SortOrder | SortOrderInput | No |
| medications | SortOrder | SortOrderInput | No |
| blood_disorders | SortOrder | SortOrderInput | No |
| club_id | SortOrder | SortOrderInput | No |
| infectious_diseases | SortOrder | SortOrderInput | No |
| last_blood_donation | SortOrder | SortOrderInput | No |
| medical_conditions | SortOrder | SortOrderInput | No |
| person_id | SortOrder | SortOrderInput | No |
| _count | MemberCountOrderByAggregateInput | No |
| _avg | MemberAvgOrderByAggregateInput | No |
| _max | MemberMaxOrderByAggregateInput | No |
| _min | MemberMinOrderByAggregateInput | No |
| _sum | MemberSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | OrganizationWhereInput | OrganizationWhereInput[] | No |
| OR | OrganizationWhereInput[] | No |
| NOT | OrganizationWhereInput | OrganizationWhereInput[] | No |
| id | IntFilter | Int | No |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| org_type | EnumOrgTypeFilter | OrgType | No |
| org_id | IntFilter | Int | No |
| Volunteer | JsonFilter | No |
| personId | IntFilter | Int | No |
| organizationSettingsId | IntFilter | Int | No |
| clubId | IntNullableFilter | Int | Null | Yes |
| version | StringFilter | String | No |
| Ambulance | AmbulanceListRelationFilter | No |
| Donation | DonationListRelationFilter | No |
| Club | ClubNullableRelationFilter | ClubWhereInput | Null | Yes |
| OrganizationSettings | OrganizationSettingsRelationFilter | OrganizationSettingsWhereInput | No |
| Person | PersonRelationFilter | PersonWhereInput | No |
| Version | VersionRelationFilter | VersionWhereInput | No |
| Support | SupportListRelationFilter | No |
| SupportMessage | SupportMessageListRelationFilter | No |
| Team | TeamListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| org_type | SortOrder | No |
| org_id | SortOrder | No |
| Volunteer | SortOrder | No |
| personId | SortOrder | No |
| organizationSettingsId | SortOrder | No |
| clubId | SortOrder | SortOrderInput | No |
| version | SortOrder | No |
| Ambulance | AmbulanceOrderByRelationAggregateInput | No |
| Donation | DonationOrderByRelationAggregateInput | No |
| Club | ClubOrderByWithRelationInput | No |
| OrganizationSettings | OrganizationSettingsOrderByWithRelationInput | No |
| Person | PersonOrderByWithRelationInput | No |
| Version | VersionOrderByWithRelationInput | No |
| Support | SupportOrderByRelationAggregateInput | No |
| SupportMessage | SupportMessageOrderByRelationAggregateInput | No |
| Team | TeamOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| AND | OrganizationWhereInput | OrganizationWhereInput[] | No |
| OR | OrganizationWhereInput[] | No |
| NOT | OrganizationWhereInput | OrganizationWhereInput[] | No |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| org_type | EnumOrgTypeFilter | OrgType | No |
| org_id | IntFilter | Int | No |
| Volunteer | JsonFilter | No |
| personId | IntFilter | Int | No |
| organizationSettingsId | IntFilter | Int | No |
| clubId | IntNullableFilter | Int | Null | Yes |
| version | StringFilter | String | No |
| Ambulance | AmbulanceListRelationFilter | No |
| Donation | DonationListRelationFilter | No |
| Club | ClubNullableRelationFilter | ClubWhereInput | Null | Yes |
| OrganizationSettings | OrganizationSettingsRelationFilter | OrganizationSettingsWhereInput | No |
| Person | PersonRelationFilter | PersonWhereInput | No |
| Version | VersionRelationFilter | VersionWhereInput | No |
| Support | SupportListRelationFilter | No |
| SupportMessage | SupportMessageListRelationFilter | No |
| Team | TeamListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| org_type | SortOrder | No |
| org_id | SortOrder | No |
| Volunteer | SortOrder | No |
| personId | SortOrder | No |
| organizationSettingsId | SortOrder | No |
| clubId | SortOrder | SortOrderInput | No |
| version | SortOrder | No |
| _count | OrganizationCountOrderByAggregateInput | No |
| _avg | OrganizationAvgOrderByAggregateInput | No |
| _max | OrganizationMaxOrderByAggregateInput | No |
| _min | OrganizationMinOrderByAggregateInput | No |
| _sum | OrganizationSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | OrganizationScalarWhereWithAggregatesInput | OrganizationScalarWhereWithAggregatesInput[] | No |
| OR | OrganizationScalarWhereWithAggregatesInput[] | No |
| NOT | OrganizationScalarWhereWithAggregatesInput | OrganizationScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| created_at | DateTimeWithAggregatesFilter | DateTime | No |
| updated_at | DateTimeWithAggregatesFilter | DateTime | No |
| org_type | EnumOrgTypeWithAggregatesFilter | OrgType | No |
| org_id | IntWithAggregatesFilter | Int | No |
| Volunteer | JsonWithAggregatesFilter | No |
| personId | IntWithAggregatesFilter | Int | No |
| organizationSettingsId | IntWithAggregatesFilter | Int | No |
| clubId | IntNullableWithAggregatesFilter | Int | Null | Yes |
| version | StringWithAggregatesFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| AND | OrganizationSettingsWhereInput | OrganizationSettingsWhereInput[] | No |
| OR | OrganizationSettingsWhereInput[] | No |
| NOT | OrganizationSettingsWhereInput | OrganizationSettingsWhereInput[] | No |
| id | IntFilter | Int | No |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| language | EnumLanguageFilter | Language | No |
| time_format | EnumTimeFormatFilter | TimeFormat | No |
| date_format | EnumDateFormatFilter | DateFormat | No |
| timezone | EnumTimezoneFilter | Timezone | No |
| theme | EnumThemeNullableFilter | Theme | Null | Yes |
| email_notifications | BoolFilter | Boolean | No |
| phone_notification | BoolFilter | Boolean | No |
| push_notifications | BoolFilter | Boolean | No |
| two_factor_auth | BoolNullableFilter | Boolean | Null | Yes |
| loginRecordId | IntNullableFilter | Int | Null | Yes |
| accountDeactivation | BoolNullableFilter | Boolean | Null | Yes |
| avatar | StringNullableFilter | String | Null | Yes |
| clearBrowsingData | BoolNullableFilter | Boolean | Null | Yes |
| contactSupportLink | StringNullableFilter | String | Null | Yes |
| dataRetentionDays | IntNullableFilter | Int | Null | Yes |
| dataSharing | BoolNullableFilter | Boolean | Null | Yes |
| helpCenterLink | StringNullableFilter | String | Null | Yes |
| high_contrast_mode | BoolNullableFilter | Boolean | Null | Yes |
| in_app_notifications | BoolNullableFilter | Boolean | Null | Yes |
| key_board_shortcut | BoolNullableFilter | Boolean | Null | Yes |
| notification_frequency | StringNullableFilter | String | Null | Yes |
| notification_sound | StringNullableFilter | String | Null | Yes |
| notification_vibrate | BoolNullableFilter | Boolean | Null | Yes |
| password_reset | BoolNullableFilter | Boolean | Null | Yes |
| security_answer | StringNullableFilter | String | Null | Yes |
| security_question | StringNullableFilter | String | Null | Yes |
| username | StringNullableFilter | String | Null | Yes |
| version | StringFilter | String | No |
| Organization | OrganizationListRelationFilter | No |
| LoginRecord | LoginRecordNullableRelationFilter | LoginRecordWhereInput | Null | Yes |
| Version | VersionRelationFilter | VersionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| language | SortOrder | No |
| time_format | SortOrder | No |
| date_format | SortOrder | No |
| timezone | SortOrder | No |
| theme | SortOrder | SortOrderInput | No |
| email_notifications | SortOrder | No |
| phone_notification | SortOrder | No |
| push_notifications | SortOrder | No |
| two_factor_auth | SortOrder | SortOrderInput | No |
| loginRecordId | SortOrder | SortOrderInput | No |
| accountDeactivation | SortOrder | SortOrderInput | No |
| avatar | SortOrder | SortOrderInput | No |
| clearBrowsingData | SortOrder | SortOrderInput | No |
| contactSupportLink | SortOrder | SortOrderInput | No |
| dataRetentionDays | SortOrder | SortOrderInput | No |
| dataSharing | SortOrder | SortOrderInput | No |
| helpCenterLink | SortOrder | SortOrderInput | No |
| high_contrast_mode | SortOrder | SortOrderInput | No |
| in_app_notifications | SortOrder | SortOrderInput | No |
| key_board_shortcut | SortOrder | SortOrderInput | No |
| notification_frequency | SortOrder | SortOrderInput | No |
| notification_sound | SortOrder | SortOrderInput | No |
| notification_vibrate | SortOrder | SortOrderInput | No |
| password_reset | SortOrder | SortOrderInput | No |
| security_answer | SortOrder | SortOrderInput | No |
| security_question | SortOrder | SortOrderInput | No |
| username | SortOrder | SortOrderInput | No |
| version | SortOrder | No |
| Organization | OrganizationOrderByRelationAggregateInput | No |
| LoginRecord | LoginRecordOrderByWithRelationInput | No |
| Version | VersionOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| AND | OrganizationSettingsWhereInput | OrganizationSettingsWhereInput[] | No |
| OR | OrganizationSettingsWhereInput[] | No |
| NOT | OrganizationSettingsWhereInput | OrganizationSettingsWhereInput[] | No |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| language | EnumLanguageFilter | Language | No |
| time_format | EnumTimeFormatFilter | TimeFormat | No |
| date_format | EnumDateFormatFilter | DateFormat | No |
| timezone | EnumTimezoneFilter | Timezone | No |
| theme | EnumThemeNullableFilter | Theme | Null | Yes |
| email_notifications | BoolFilter | Boolean | No |
| phone_notification | BoolFilter | Boolean | No |
| push_notifications | BoolFilter | Boolean | No |
| two_factor_auth | BoolNullableFilter | Boolean | Null | Yes |
| loginRecordId | IntNullableFilter | Int | Null | Yes |
| accountDeactivation | BoolNullableFilter | Boolean | Null | Yes |
| avatar | StringNullableFilter | String | Null | Yes |
| clearBrowsingData | BoolNullableFilter | Boolean | Null | Yes |
| contactSupportLink | StringNullableFilter | String | Null | Yes |
| dataRetentionDays | IntNullableFilter | Int | Null | Yes |
| dataSharing | BoolNullableFilter | Boolean | Null | Yes |
| helpCenterLink | StringNullableFilter | String | Null | Yes |
| high_contrast_mode | BoolNullableFilter | Boolean | Null | Yes |
| in_app_notifications | BoolNullableFilter | Boolean | Null | Yes |
| key_board_shortcut | BoolNullableFilter | Boolean | Null | Yes |
| notification_frequency | StringNullableFilter | String | Null | Yes |
| notification_sound | StringNullableFilter | String | Null | Yes |
| notification_vibrate | BoolNullableFilter | Boolean | Null | Yes |
| password_reset | BoolNullableFilter | Boolean | Null | Yes |
| security_answer | StringNullableFilter | String | Null | Yes |
| security_question | StringNullableFilter | String | Null | Yes |
| username | StringNullableFilter | String | Null | Yes |
| version | StringFilter | String | No |
| Organization | OrganizationListRelationFilter | No |
| LoginRecord | LoginRecordNullableRelationFilter | LoginRecordWhereInput | Null | Yes |
| Version | VersionRelationFilter | VersionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PersonWhereInput | PersonWhereInput[] | No |
| OR | PersonWhereInput[] | No |
| NOT | PersonWhereInput | PersonWhereInput[] | No |
| id | IntFilter | Int | No |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| first_name | StringFilter | String | No |
| last_name | StringNullableFilter | String | Null | Yes |
| father_name | StringNullableFilter | String | Null | Yes |
| mother_name | StringNullableFilter | String | Null | Yes |
| profession | StringNullableFilter | String | Null | Yes |
| dob | DateTimeNullableFilter | DateTime | Null | Yes |
| gender | EnumGenderNullableFilter | Gender | Null | Yes |
| version | StringFilter | String | No |
| avatar | StringNullableFilter | String | Null | Yes |
| contact_id | IntFilter | Int | No |
| teamId | IntNullableFilter | Int | Null | Yes |
| bid | StringNullableFilter | String | Null | Yes |
| driving | StringNullableFilter | String | Null | Yes |
| nid | StringNullableFilter | String | Null | Yes |
| passport | StringNullableFilter | String | Null | Yes |
| Ambulance | AmbulanceListRelationFilter | No |
| BloodCenter | BloodCenterListRelationFilter | No |
| BloodDonation | BloodDonationListRelationFilter | No |
| Club_Club_chairmanToPerson | ClubListRelationFilter | No |
| Club_Club_founderToPerson | ClubListRelationFilter | No |
| Club_Club_vice_chairmanToPerson | ClubListRelationFilter | No |
| Contact_Contact_personToPerson | ContactListRelationFilter | No |
| Donation | DonationListRelationFilter | No |
| Member | MemberListRelationFilter | No |
| Organization | OrganizationListRelationFilter | No |
| Contact_Person_contact_idToContact | ContactRelationFilter | ContactWhereInput | No |
| Team_Person_teamIdToTeam | TeamNullableRelationFilter | TeamWhereInput | Null | Yes |
| Version | VersionRelationFilter | VersionWhereInput | No |
| Request | RequestListRelationFilter | No |
| SupportMessage | SupportMessageListRelationFilter | No |
| Team_Team_membersToPerson | TeamListRelationFilter | No |
| User | UserListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| AND | PersonWhereInput | PersonWhereInput[] | No |
| OR | PersonWhereInput[] | No |
| NOT | PersonWhereInput | PersonWhereInput[] | No |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| first_name | StringFilter | String | No |
| last_name | StringNullableFilter | String | Null | Yes |
| father_name | StringNullableFilter | String | Null | Yes |
| mother_name | StringNullableFilter | String | Null | Yes |
| profession | StringNullableFilter | String | Null | Yes |
| dob | DateTimeNullableFilter | DateTime | Null | Yes |
| gender | EnumGenderNullableFilter | Gender | Null | Yes |
| version | StringFilter | String | No |
| avatar | StringNullableFilter | String | Null | Yes |
| contact_id | IntFilter | Int | No |
| teamId | IntNullableFilter | Int | Null | Yes |
| bid | StringNullableFilter | String | Null | Yes |
| driving | StringNullableFilter | String | Null | Yes |
| nid | StringNullableFilter | String | Null | Yes |
| passport | StringNullableFilter | String | Null | Yes |
| Ambulance | AmbulanceListRelationFilter | No |
| BloodCenter | BloodCenterListRelationFilter | No |
| BloodDonation | BloodDonationListRelationFilter | No |
| Club_Club_chairmanToPerson | ClubListRelationFilter | No |
| Club_Club_founderToPerson | ClubListRelationFilter | No |
| Club_Club_vice_chairmanToPerson | ClubListRelationFilter | No |
| Contact_Contact_personToPerson | ContactListRelationFilter | No |
| Donation | DonationListRelationFilter | No |
| Member | MemberListRelationFilter | No |
| Organization | OrganizationListRelationFilter | No |
| Contact_Person_contact_idToContact | ContactRelationFilter | ContactWhereInput | No |
| Team_Person_teamIdToTeam | TeamNullableRelationFilter | TeamWhereInput | Null | Yes |
| Version | VersionRelationFilter | VersionWhereInput | No |
| Request | RequestListRelationFilter | No |
| SupportMessage | SupportMessageListRelationFilter | No |
| Team_Team_membersToPerson | TeamListRelationFilter | No |
| User | UserListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| first_name | SortOrder | No |
| last_name | SortOrder | SortOrderInput | No |
| father_name | SortOrder | SortOrderInput | No |
| mother_name | SortOrder | SortOrderInput | No |
| profession | SortOrder | SortOrderInput | No |
| dob | SortOrder | SortOrderInput | No |
| gender | SortOrder | SortOrderInput | No |
| version | SortOrder | No |
| avatar | SortOrder | SortOrderInput | No |
| contact_id | SortOrder | No |
| teamId | SortOrder | SortOrderInput | No |
| bid | SortOrder | SortOrderInput | No |
| driving | SortOrder | SortOrderInput | No |
| nid | SortOrder | SortOrderInput | No |
| passport | SortOrder | SortOrderInput | No |
| _count | PersonCountOrderByAggregateInput | No |
| _avg | PersonAvgOrderByAggregateInput | No |
| _max | PersonMaxOrderByAggregateInput | No |
| _min | PersonMinOrderByAggregateInput | No |
| _sum | PersonSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | RequestWhereInput | RequestWhereInput[] | No |
| OR | RequestWhereInput[] | No |
| NOT | RequestWhereInput | RequestWhereInput[] | No |
| id | IntFilter | Int | No |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| health_issue | StringFilter | String | No |
| blood_group | EnumBloodGroupFilter | BloodGroup | No |
| quantity | IntFilter | Int | No |
| donation_type | StringFilter | String | No |
| datetime | DateTimeFilter | DateTime | No |
| hospital_name | StringFilter | String | No |
| hospital_address | StringFilter | String | No |
| hospital_phone | StringFilter | String | No |
| hospital_email | StringFilter | String | No |
| version | StringFilter | String | No |
| memberId | IntNullableFilter | Int | Null | Yes |
| personId | IntFilter | Int | No |
| Member | MemberNullableRelationFilter | MemberWhereInput | Null | Yes |
| Person | PersonRelationFilter | PersonWhereInput | No |
| Version | VersionRelationFilter | VersionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| health_issue | SortOrder | No |
| blood_group | SortOrder | No |
| quantity | SortOrder | No |
| donation_type | SortOrder | No |
| datetime | SortOrder | No |
| hospital_name | SortOrder | No |
| hospital_address | SortOrder | No |
| hospital_phone | SortOrder | No |
| hospital_email | SortOrder | No |
| version | SortOrder | No |
| memberId | SortOrder | SortOrderInput | No |
| personId | SortOrder | No |
| Member | MemberOrderByWithRelationInput | No |
| Person | PersonOrderByWithRelationInput | No |
| Version | VersionOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| AND | RequestWhereInput | RequestWhereInput[] | No |
| OR | RequestWhereInput[] | No |
| NOT | RequestWhereInput | RequestWhereInput[] | No |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| health_issue | StringFilter | String | No |
| blood_group | EnumBloodGroupFilter | BloodGroup | No |
| quantity | IntFilter | Int | No |
| donation_type | StringFilter | String | No |
| datetime | DateTimeFilter | DateTime | No |
| hospital_name | StringFilter | String | No |
| hospital_address | StringFilter | String | No |
| hospital_phone | StringFilter | String | No |
| hospital_email | StringFilter | String | No |
| version | StringFilter | String | No |
| memberId | IntNullableFilter | Int | Null | Yes |
| personId | IntFilter | Int | No |
| Member | MemberNullableRelationFilter | MemberWhereInput | Null | Yes |
| Person | PersonRelationFilter | PersonWhereInput | No |
| Version | VersionRelationFilter | VersionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| health_issue | SortOrder | No |
| blood_group | SortOrder | No |
| quantity | SortOrder | No |
| donation_type | SortOrder | No |
| datetime | SortOrder | No |
| hospital_name | SortOrder | No |
| hospital_address | SortOrder | No |
| hospital_phone | SortOrder | No |
| hospital_email | SortOrder | No |
| version | SortOrder | No |
| memberId | SortOrder | SortOrderInput | No |
| personId | SortOrder | No |
| _count | RequestCountOrderByAggregateInput | No |
| _avg | RequestAvgOrderByAggregateInput | No |
| _max | RequestMaxOrderByAggregateInput | No |
| _min | RequestMinOrderByAggregateInput | No |
| _sum | RequestSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | SecurityQuestionWhereInput | SecurityQuestionWhereInput[] | No |
| OR | SecurityQuestionWhereInput[] | No |
| NOT | SecurityQuestionWhereInput | SecurityQuestionWhereInput[] | No |
| id | IntFilter | Int | No |
| question | StringFilter | String | No |
| answer | StringFilter | String | No |
| userId | IntFilter | Int | No |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| version | StringFilter | String | No |
| User | UserRelationFilter | UserWhereInput | No |
| Version | VersionRelationFilter | VersionWhereInput | No |
| UserSettings | UserSettingsListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| question | SortOrder | No |
| answer | SortOrder | No |
| userId | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| version | SortOrder | No |
| User | UserOrderByWithRelationInput | No |
| Version | VersionOrderByWithRelationInput | No |
| UserSettings | UserSettingsOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| AND | SecurityQuestionWhereInput | SecurityQuestionWhereInput[] | No |
| OR | SecurityQuestionWhereInput[] | No |
| NOT | SecurityQuestionWhereInput | SecurityQuestionWhereInput[] | No |
| question | StringFilter | String | No |
| answer | StringFilter | String | No |
| userId | IntFilter | Int | No |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| version | StringFilter | String | No |
| User | UserRelationFilter | UserWhereInput | No |
| Version | VersionRelationFilter | VersionWhereInput | No |
| UserSettings | UserSettingsListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| question | SortOrder | No |
| answer | SortOrder | No |
| userId | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| version | SortOrder | No |
| _count | SecurityQuestionCountOrderByAggregateInput | No |
| _avg | SecurityQuestionAvgOrderByAggregateInput | No |
| _max | SecurityQuestionMaxOrderByAggregateInput | No |
| _min | SecurityQuestionMinOrderByAggregateInput | No |
| _sum | SecurityQuestionSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | SecurityQuestionScalarWhereWithAggregatesInput | SecurityQuestionScalarWhereWithAggregatesInput[] | No |
| OR | SecurityQuestionScalarWhereWithAggregatesInput[] | No |
| NOT | SecurityQuestionScalarWhereWithAggregatesInput | SecurityQuestionScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| question | StringWithAggregatesFilter | String | No |
| answer | StringWithAggregatesFilter | String | No |
| userId | IntWithAggregatesFilter | Int | No |
| created_at | DateTimeWithAggregatesFilter | DateTime | No |
| updated_at | DateTimeWithAggregatesFilter | DateTime | No |
| version | StringWithAggregatesFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| AND | SocialMediaLinksWhereInput | SocialMediaLinksWhereInput[] | No |
| OR | SocialMediaLinksWhereInput[] | No |
| NOT | SocialMediaLinksWhereInput | SocialMediaLinksWhereInput[] | No |
| id | IntFilter | Int | No |
| StringNullableFilter | String | Null | Yes | |
| StringNullableFilter | String | Null | Yes | |
| StringNullableFilter | String | Null | Yes | |
| userId | IntFilter | Int | No |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| version | StringFilter | String | No |
| Version | VersionRelationFilter | VersionWhereInput | No |
| User | UserListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| SortOrder | SortOrderInput | No | |
| SortOrder | SortOrderInput | No | |
| SortOrder | SortOrderInput | No | |
| userId | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| version | SortOrder | No |
| Version | VersionOrderByWithRelationInput | No |
| User | UserOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| AND | SocialMediaLinksWhereInput | SocialMediaLinksWhereInput[] | No |
| OR | SocialMediaLinksWhereInput[] | No |
| NOT | SocialMediaLinksWhereInput | SocialMediaLinksWhereInput[] | No |
| StringNullableFilter | String | Null | Yes | |
| StringNullableFilter | String | Null | Yes | |
| StringNullableFilter | String | Null | Yes | |
| userId | IntFilter | Int | No |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| version | StringFilter | String | No |
| Version | VersionRelationFilter | VersionWhereInput | No |
| User | UserListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| SortOrder | SortOrderInput | No | |
| SortOrder | SortOrderInput | No | |
| SortOrder | SortOrderInput | No | |
| userId | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| version | SortOrder | No |
| _count | SocialMediaLinksCountOrderByAggregateInput | No |
| _avg | SocialMediaLinksAvgOrderByAggregateInput | No |
| _max | SocialMediaLinksMaxOrderByAggregateInput | No |
| _min | SocialMediaLinksMinOrderByAggregateInput | No |
| _sum | SocialMediaLinksSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | SocialMediaLinksScalarWhereWithAggregatesInput | SocialMediaLinksScalarWhereWithAggregatesInput[] | No |
| OR | SocialMediaLinksScalarWhereWithAggregatesInput[] | No |
| NOT | SocialMediaLinksScalarWhereWithAggregatesInput | SocialMediaLinksScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| StringNullableWithAggregatesFilter | String | Null | Yes | |
| StringNullableWithAggregatesFilter | String | Null | Yes | |
| StringNullableWithAggregatesFilter | String | Null | Yes | |
| userId | IntWithAggregatesFilter | Int | No |
| created_at | DateTimeWithAggregatesFilter | DateTime | No |
| updated_at | DateTimeWithAggregatesFilter | DateTime | No |
| version | StringWithAggregatesFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| AND | SupportWhereInput | SupportWhereInput[] | No |
| OR | SupportWhereInput[] | No |
| NOT | SupportWhereInput | SupportWhereInput[] | No |
| id | IntFilter | Int | No |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| version | StringFilter | String | No |
| organization | IntFilter | Int | No |
| messages | StringNullableFilter | String | Null | Yes |
| status | StringNullableFilter | String | Null | Yes |
| priority | IntFilter | Int | No |
| subject | StringNullableFilter | String | Null | Yes |
| Organization | OrganizationRelationFilter | OrganizationWhereInput | No |
| Version | VersionRelationFilter | VersionWhereInput | No |
| SupportMessage | SupportMessageListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| version | SortOrder | No |
| organization | SortOrder | No |
| messages | SortOrder | SortOrderInput | No |
| status | SortOrder | SortOrderInput | No |
| priority | SortOrder | No |
| subject | SortOrder | SortOrderInput | No |
| Organization | OrganizationOrderByWithRelationInput | No |
| Version | VersionOrderByWithRelationInput | No |
| SupportMessage | SupportMessageOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| AND | SupportWhereInput | SupportWhereInput[] | No |
| OR | SupportWhereInput[] | No |
| NOT | SupportWhereInput | SupportWhereInput[] | No |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| version | StringFilter | String | No |
| organization | IntFilter | Int | No |
| messages | StringNullableFilter | String | Null | Yes |
| status | StringNullableFilter | String | Null | Yes |
| priority | IntFilter | Int | No |
| subject | StringNullableFilter | String | Null | Yes |
| Organization | OrganizationRelationFilter | OrganizationWhereInput | No |
| Version | VersionRelationFilter | VersionWhereInput | No |
| SupportMessage | SupportMessageListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| version | SortOrder | No |
| organization | SortOrder | No |
| messages | SortOrder | SortOrderInput | No |
| status | SortOrder | SortOrderInput | No |
| priority | SortOrder | No |
| subject | SortOrder | SortOrderInput | No |
| _count | SupportCountOrderByAggregateInput | No |
| _avg | SupportAvgOrderByAggregateInput | No |
| _max | SupportMaxOrderByAggregateInput | No |
| _min | SupportMinOrderByAggregateInput | No |
| _sum | SupportSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | SupportScalarWhereWithAggregatesInput | SupportScalarWhereWithAggregatesInput[] | No |
| OR | SupportScalarWhereWithAggregatesInput[] | No |
| NOT | SupportScalarWhereWithAggregatesInput | SupportScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| created_at | DateTimeWithAggregatesFilter | DateTime | No |
| updated_at | DateTimeWithAggregatesFilter | DateTime | No |
| version | StringWithAggregatesFilter | String | No |
| organization | IntWithAggregatesFilter | Int | No |
| messages | StringNullableWithAggregatesFilter | String | Null | Yes |
| status | StringNullableWithAggregatesFilter | String | Null | Yes |
| priority | IntWithAggregatesFilter | Int | No |
| subject | StringNullableWithAggregatesFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | SupportMessageWhereInput | SupportMessageWhereInput[] | No |
| OR | SupportMessageWhereInput[] | No |
| NOT | SupportMessageWhereInput | SupportMessageWhereInput[] | No |
| id | IntFilter | Int | No |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| organization | IntFilter | Int | No |
| support | IntFilter | Int | No |
| message | StringFilter | String | No |
| author | IntFilter | Int | No |
| version | StringFilter | String | No |
| Person | PersonRelationFilter | PersonWhereInput | No |
| Organization | OrganizationRelationFilter | OrganizationWhereInput | No |
| Support | SupportRelationFilter | SupportWhereInput | No |
| Version | VersionRelationFilter | VersionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| organization | SortOrder | No |
| support | SortOrder | No |
| message | SortOrder | No |
| author | SortOrder | No |
| version | SortOrder | No |
| Person | PersonOrderByWithRelationInput | No |
| Organization | OrganizationOrderByWithRelationInput | No |
| Support | SupportOrderByWithRelationInput | No |
| Version | VersionOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| AND | SupportMessageWhereInput | SupportMessageWhereInput[] | No |
| OR | SupportMessageWhereInput[] | No |
| NOT | SupportMessageWhereInput | SupportMessageWhereInput[] | No |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| organization | IntFilter | Int | No |
| support | IntFilter | Int | No |
| message | StringFilter | String | No |
| author | IntFilter | Int | No |
| version | StringFilter | String | No |
| Person | PersonRelationFilter | PersonWhereInput | No |
| Organization | OrganizationRelationFilter | OrganizationWhereInput | No |
| Support | SupportRelationFilter | SupportWhereInput | No |
| Version | VersionRelationFilter | VersionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| organization | SortOrder | No |
| support | SortOrder | No |
| message | SortOrder | No |
| author | SortOrder | No |
| version | SortOrder | No |
| _count | SupportMessageCountOrderByAggregateInput | No |
| _avg | SupportMessageAvgOrderByAggregateInput | No |
| _max | SupportMessageMaxOrderByAggregateInput | No |
| _min | SupportMessageMinOrderByAggregateInput | No |
| _sum | SupportMessageSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | SupportMessageScalarWhereWithAggregatesInput | SupportMessageScalarWhereWithAggregatesInput[] | No |
| OR | SupportMessageScalarWhereWithAggregatesInput[] | No |
| NOT | SupportMessageScalarWhereWithAggregatesInput | SupportMessageScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| created_at | DateTimeWithAggregatesFilter | DateTime | No |
| updated_at | DateTimeWithAggregatesFilter | DateTime | No |
| organization | IntWithAggregatesFilter | Int | No |
| support | IntWithAggregatesFilter | Int | No |
| message | StringWithAggregatesFilter | String | No |
| author | IntWithAggregatesFilter | Int | No |
| version | StringWithAggregatesFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| AND | TeamWhereInput | TeamWhereInput[] | No |
| OR | TeamWhereInput[] | No |
| NOT | TeamWhereInput | TeamWhereInput[] | No |
| id | IntFilter | Int | No |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| started_at | DateTimeFilter | DateTime | No |
| ended_at | DateTimeFilter | DateTime | No |
| organization | IntFilter | Int | No |
| version | StringFilter | String | No |
| members | IntFilter | Int | No |
| status | StringFilter | String | No |
| Person_Person_teamIdToTeam | PersonListRelationFilter | No |
| Person_Team_membersToPerson | PersonRelationFilter | PersonWhereInput | No |
| Organization | OrganizationRelationFilter | OrganizationWhereInput | No |
| Version | VersionRelationFilter | VersionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| started_at | SortOrder | No |
| ended_at | SortOrder | No |
| organization | SortOrder | No |
| version | SortOrder | No |
| members | SortOrder | No |
| status | SortOrder | No |
| Person_Person_teamIdToTeam | PersonOrderByRelationAggregateInput | No |
| Person_Team_membersToPerson | PersonOrderByWithRelationInput | No |
| Organization | OrganizationOrderByWithRelationInput | No |
| Version | VersionOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| AND | TeamWhereInput | TeamWhereInput[] | No |
| OR | TeamWhereInput[] | No |
| NOT | TeamWhereInput | TeamWhereInput[] | No |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| started_at | DateTimeFilter | DateTime | No |
| ended_at | DateTimeFilter | DateTime | No |
| organization | IntFilter | Int | No |
| version | StringFilter | String | No |
| members | IntFilter | Int | No |
| status | StringFilter | String | No |
| Person_Person_teamIdToTeam | PersonListRelationFilter | No |
| Person_Team_membersToPerson | PersonRelationFilter | PersonWhereInput | No |
| Organization | OrganizationRelationFilter | OrganizationWhereInput | No |
| Version | VersionRelationFilter | VersionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| started_at | SortOrder | No |
| ended_at | SortOrder | No |
| organization | SortOrder | No |
| version | SortOrder | No |
| members | SortOrder | No |
| status | SortOrder | No |
| _count | TeamCountOrderByAggregateInput | No |
| _avg | TeamAvgOrderByAggregateInput | No |
| _max | TeamMaxOrderByAggregateInput | No |
| _min | TeamMinOrderByAggregateInput | No |
| _sum | TeamSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | TeamScalarWhereWithAggregatesInput | TeamScalarWhereWithAggregatesInput[] | No |
| OR | TeamScalarWhereWithAggregatesInput[] | No |
| NOT | TeamScalarWhereWithAggregatesInput | TeamScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| created_at | DateTimeWithAggregatesFilter | DateTime | No |
| updated_at | DateTimeWithAggregatesFilter | DateTime | No |
| started_at | DateTimeWithAggregatesFilter | DateTime | No |
| ended_at | DateTimeWithAggregatesFilter | DateTime | No |
| organization | IntWithAggregatesFilter | Int | No |
| version | StringWithAggregatesFilter | String | No |
| members | IntWithAggregatesFilter | Int | No |
| status | StringWithAggregatesFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| AND | TwoFactorAuthWhereInput | TwoFactorAuthWhereInput[] | No |
| OR | TwoFactorAuthWhereInput[] | No |
| NOT | TwoFactorAuthWhereInput | TwoFactorAuthWhereInput[] | No |
| id | IntFilter | Int | No |
| is_enabled | BoolFilter | Boolean | No |
| secret_key | StringNullableFilter | String | Null | Yes |
| user_id | IntFilter | Int | No |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| version | StringFilter | String | No |
| Version | VersionRelationFilter | VersionWhereInput | No |
| User | UserListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| is_enabled | SortOrder | No |
| secret_key | SortOrder | SortOrderInput | No |
| user_id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| version | SortOrder | No |
| Version | VersionOrderByWithRelationInput | No |
| User | UserOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| AND | TwoFactorAuthWhereInput | TwoFactorAuthWhereInput[] | No |
| OR | TwoFactorAuthWhereInput[] | No |
| NOT | TwoFactorAuthWhereInput | TwoFactorAuthWhereInput[] | No |
| is_enabled | BoolFilter | Boolean | No |
| secret_key | StringNullableFilter | String | Null | Yes |
| user_id | IntFilter | Int | No |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| version | StringFilter | String | No |
| Version | VersionRelationFilter | VersionWhereInput | No |
| User | UserListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| is_enabled | SortOrder | No |
| secret_key | SortOrder | SortOrderInput | No |
| user_id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| version | SortOrder | No |
| _count | TwoFactorAuthCountOrderByAggregateInput | No |
| _avg | TwoFactorAuthAvgOrderByAggregateInput | No |
| _max | TwoFactorAuthMaxOrderByAggregateInput | No |
| _min | TwoFactorAuthMinOrderByAggregateInput | No |
| _sum | TwoFactorAuthSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | TwoFactorAuthScalarWhereWithAggregatesInput | TwoFactorAuthScalarWhereWithAggregatesInput[] | No |
| OR | TwoFactorAuthScalarWhereWithAggregatesInput[] | No |
| NOT | TwoFactorAuthScalarWhereWithAggregatesInput | TwoFactorAuthScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| is_enabled | BoolWithAggregatesFilter | Boolean | No |
| secret_key | StringNullableWithAggregatesFilter | String | Null | Yes |
| user_id | IntWithAggregatesFilter | Int | No |
| created_at | DateTimeWithAggregatesFilter | DateTime | No |
| updated_at | DateTimeWithAggregatesFilter | DateTime | No |
| version | StringWithAggregatesFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| username | SortOrder | SortOrderInput | No |
| SortOrder | No | |
| password | SortOrder | No |
| status | SortOrder | No |
| ip | SortOrder | No |
| two_factor_auth | SortOrder | No |
| social_login | SortOrder | No |
| logins | SortOrder | No |
| person | SortOrder | No |
| settings | SortOrder | No |
| version | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| SecurityQuestion | SecurityQuestionOrderByRelationAggregateInput | No |
| LoginRecord | LoginRecordOrderByWithRelationInput | No |
| Person | PersonOrderByWithRelationInput | No |
| SocialMediaLinks | SocialMediaLinksOrderByWithRelationInput | No |
| TwoFactorAuth | TwoFactorAuthOrderByWithRelationInput | No |
| UserSettings | UserSettingsOrderByWithRelationInput | No |
| Version | VersionOrderByWithRelationInput | No |
| UserRole | UserRoleOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| username | SortOrder | SortOrderInput | No |
| SortOrder | No | |
| password | SortOrder | No |
| status | SortOrder | No |
| ip | SortOrder | No |
| two_factor_auth | SortOrder | No |
| social_login | SortOrder | No |
| logins | SortOrder | No |
| person | SortOrder | No |
| settings | SortOrder | No |
| version | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| _count | UserCountOrderByAggregateInput | No |
| _avg | UserAvgOrderByAggregateInput | No |
| _max | UserMaxOrderByAggregateInput | No |
| _min | UserMinOrderByAggregateInput | No |
| _sum | UserSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | UserScalarWhereWithAggregatesInput | UserScalarWhereWithAggregatesInput[] | No |
| OR | UserScalarWhereWithAggregatesInput[] | No |
| NOT | UserScalarWhereWithAggregatesInput | UserScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| username | StringNullableWithAggregatesFilter | String | Null | Yes |
| StringWithAggregatesFilter | String | No | |
| password | StringWithAggregatesFilter | String | No |
| status | EnumAccountStatusWithAggregatesFilter | AccountStatus | No |
| ip | StringWithAggregatesFilter | String | No |
| two_factor_auth | IntWithAggregatesFilter | Int | No |
| social_login | IntWithAggregatesFilter | Int | No |
| logins | IntWithAggregatesFilter | Int | No |
| person | IntWithAggregatesFilter | Int | No |
| settings | IntWithAggregatesFilter | Int | No |
| version | StringWithAggregatesFilter | String | No |
| created_at | DateTimeWithAggregatesFilter | DateTime | No |
| updated_at | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | UserRoleWhereInput | UserRoleWhereInput[] | No |
| OR | UserRoleWhereInput[] | No |
| NOT | UserRoleWhereInput | UserRoleWhereInput[] | No |
| id | IntFilter | Int | No |
| name | StringFilter | String | No |
| user_id | IntFilter | Int | No |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| version | StringFilter | String | No |
| User | UserRelationFilter | UserWhereInput | No |
| Version | VersionRelationFilter | VersionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| user_id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| version | SortOrder | No |
| User | UserOrderByWithRelationInput | No |
| Version | VersionOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| AND | UserRoleWhereInput | UserRoleWhereInput[] | No |
| OR | UserRoleWhereInput[] | No |
| NOT | UserRoleWhereInput | UserRoleWhereInput[] | No |
| name | StringFilter | String | No |
| user_id | IntFilter | Int | No |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| version | StringFilter | String | No |
| User | UserRelationFilter | UserWhereInput | No |
| Version | VersionRelationFilter | VersionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| user_id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| version | SortOrder | No |
| _count | UserRoleCountOrderByAggregateInput | No |
| _avg | UserRoleAvgOrderByAggregateInput | No |
| _max | UserRoleMaxOrderByAggregateInput | No |
| _min | UserRoleMinOrderByAggregateInput | No |
| _sum | UserRoleSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | UserRoleScalarWhereWithAggregatesInput | UserRoleScalarWhereWithAggregatesInput[] | No |
| OR | UserRoleScalarWhereWithAggregatesInput[] | No |
| NOT | UserRoleScalarWhereWithAggregatesInput | UserRoleScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| name | StringWithAggregatesFilter | String | No |
| user_id | IntWithAggregatesFilter | Int | No |
| created_at | DateTimeWithAggregatesFilter | DateTime | No |
| updated_at | DateTimeWithAggregatesFilter | DateTime | No |
| version | StringWithAggregatesFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| AND | UserSettingsWhereInput | UserSettingsWhereInput[] | No |
| OR | UserSettingsWhereInput[] | No |
| NOT | UserSettingsWhereInput | UserSettingsWhereInput[] | No |
| id | IntFilter | Int | No |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| language | EnumLanguageFilter | Language | No |
| time_format | EnumTimeFormatFilter | TimeFormat | No |
| date_format | EnumDateFormatFilter | DateFormat | No |
| timezone | EnumTimezoneFilter | Timezone | No |
| theme | EnumThemeNullableFilter | Theme | Null | Yes |
| email_notifications | BoolFilter | Boolean | No |
| phone_notification | BoolFilter | Boolean | No |
| push_notifications | BoolFilter | Boolean | No |
| two_factor_auth | BoolNullableFilter | Boolean | Null | Yes |
| login_record_id | IntFilter | Int | No |
| high_contrast_mode | BoolNullableFilter | Boolean | Null | Yes |
| in_app_notifications | BoolNullableFilter | Boolean | Null | Yes |
| key_board_shortcut | BoolNullableFilter | Boolean | Null | Yes |
| notification_frequency | StringNullableFilter | String | Null | Yes |
| notification_sound | StringNullableFilter | String | Null | Yes |
| notification_vibrate | BoolNullableFilter | Boolean | Null | Yes |
| password_reset | BoolNullableFilter | Boolean | Null | Yes |
| version | StringFilter | String | No |
| security_question | IntNullableFilter | Int | Null | Yes |
| User | UserListRelationFilter | No |
| LoginRecord | LoginRecordRelationFilter | LoginRecordWhereInput | No |
| SecurityQuestion | SecurityQuestionNullableRelationFilter | SecurityQuestionWhereInput | Null | Yes |
| Version | VersionRelationFilter | VersionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| language | SortOrder | No |
| time_format | SortOrder | No |
| date_format | SortOrder | No |
| timezone | SortOrder | No |
| theme | SortOrder | SortOrderInput | No |
| email_notifications | SortOrder | No |
| phone_notification | SortOrder | No |
| push_notifications | SortOrder | No |
| two_factor_auth | SortOrder | SortOrderInput | No |
| login_record_id | SortOrder | No |
| high_contrast_mode | SortOrder | SortOrderInput | No |
| in_app_notifications | SortOrder | SortOrderInput | No |
| key_board_shortcut | SortOrder | SortOrderInput | No |
| notification_frequency | SortOrder | SortOrderInput | No |
| notification_sound | SortOrder | SortOrderInput | No |
| notification_vibrate | SortOrder | SortOrderInput | No |
| password_reset | SortOrder | SortOrderInput | No |
| version | SortOrder | No |
| security_question | SortOrder | SortOrderInput | No |
| User | UserOrderByRelationAggregateInput | No |
| LoginRecord | LoginRecordOrderByWithRelationInput | No |
| SecurityQuestion | SecurityQuestionOrderByWithRelationInput | No |
| Version | VersionOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| AND | UserSettingsWhereInput | UserSettingsWhereInput[] | No |
| OR | UserSettingsWhereInput[] | No |
| NOT | UserSettingsWhereInput | UserSettingsWhereInput[] | No |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| language | EnumLanguageFilter | Language | No |
| time_format | EnumTimeFormatFilter | TimeFormat | No |
| date_format | EnumDateFormatFilter | DateFormat | No |
| timezone | EnumTimezoneFilter | Timezone | No |
| theme | EnumThemeNullableFilter | Theme | Null | Yes |
| email_notifications | BoolFilter | Boolean | No |
| phone_notification | BoolFilter | Boolean | No |
| push_notifications | BoolFilter | Boolean | No |
| two_factor_auth | BoolNullableFilter | Boolean | Null | Yes |
| login_record_id | IntFilter | Int | No |
| high_contrast_mode | BoolNullableFilter | Boolean | Null | Yes |
| in_app_notifications | BoolNullableFilter | Boolean | Null | Yes |
| key_board_shortcut | BoolNullableFilter | Boolean | Null | Yes |
| notification_frequency | StringNullableFilter | String | Null | Yes |
| notification_sound | StringNullableFilter | String | Null | Yes |
| notification_vibrate | BoolNullableFilter | Boolean | Null | Yes |
| password_reset | BoolNullableFilter | Boolean | Null | Yes |
| version | StringFilter | String | No |
| security_question | IntNullableFilter | Int | Null | Yes |
| User | UserListRelationFilter | No |
| LoginRecord | LoginRecordRelationFilter | LoginRecordWhereInput | No |
| SecurityQuestion | SecurityQuestionNullableRelationFilter | SecurityQuestionWhereInput | Null | Yes |
| Version | VersionRelationFilter | VersionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| slug | SortOrder | No |
| title | SortOrder | No |
| description | SortOrder | SortOrderInput | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| version | SortOrder | SortOrderInput | No |
| _count | VersionCountOrderByAggregateInput | No |
| _avg | VersionAvgOrderByAggregateInput | No |
| _max | VersionMaxOrderByAggregateInput | No |
| _min | VersionMinOrderByAggregateInput | No |
| _sum | VersionSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | VersionScalarWhereWithAggregatesInput | VersionScalarWhereWithAggregatesInput[] | No |
| OR | VersionScalarWhereWithAggregatesInput[] | No |
| NOT | VersionScalarWhereWithAggregatesInput | VersionScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| slug | StringWithAggregatesFilter | String | No |
| title | StringWithAggregatesFilter | String | No |
| description | StringNullableWithAggregatesFilter | String | Null | Yes |
| created_at | DateTimeWithAggregatesFilter | DateTime | No |
| updated_at | DateTimeWithAggregatesFilter | DateTime | No |
| version | StringNullableWithAggregatesFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| userId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| provider | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| providerAccountId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| refresh_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| access_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| expires_at | BigInt | NullableBigIntFieldUpdateOperationsInput | Null | Yes |
| scope | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| id_token | String | StringFieldUpdateOperationsInput | No |
| session_state | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| userId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| provider | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| providerAccountId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| refresh_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| access_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| expires_at | BigInt | NullableBigIntFieldUpdateOperationsInput | Null | Yes |
| scope | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| id_token | String | StringFieldUpdateOperationsInput | No |
| session_state | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| userId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| provider | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| providerAccountId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| refresh_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| access_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| expires_at | BigInt | NullableBigIntFieldUpdateOperationsInput | Null | Yes |
| scope | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| id_token | String | StringFieldUpdateOperationsInput | No |
| session_state | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| userId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| provider | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| providerAccountId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| refresh_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| access_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| expires_at | BigInt | NullableBigIntFieldUpdateOperationsInput | Null | Yes |
| scope | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| id_token | String | StringFieldUpdateOperationsInput | No |
| session_state | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | No |
| updated_at | DateTime | No |
| vehicle_number | String | No |
| ambulance_type | String | Null | Yes |
| equipment | AmbulanceCreateequipmentInput | String | No |
| color | String | Null | Yes |
| Contact | ContactCreateNestedOneWithoutAmbulanceInput | No |
| Organization | OrganizationCreateNestedOneWithoutAmbulanceInput | No |
| Person | PersonCreateNestedOneWithoutAmbulanceInput | No |
| Version | VersionCreateNestedOneWithoutAmbulanceInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| vehicle_number | String | No |
| ambulance_type | String | Null | Yes |
| person | Int | No |
| version | String | No |
| organization | Int | Null | Yes |
| equipment | AmbulanceCreateequipmentInput | String | No |
| contact | Int | Null | Yes |
| color | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| vehicle_number | String | StringFieldUpdateOperationsInput | No |
| ambulance_type | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| equipment | AmbulanceUpdateequipmentInput | String | No |
| color | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Contact | ContactUpdateOneWithoutAmbulanceNestedInput | No |
| Organization | OrganizationUpdateOneWithoutAmbulanceNestedInput | No |
| Person | PersonUpdateOneRequiredWithoutAmbulanceNestedInput | No |
| Version | VersionUpdateOneRequiredWithoutAmbulanceNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| vehicle_number | String | StringFieldUpdateOperationsInput | No |
| ambulance_type | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| person | Int | IntFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| organization | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| equipment | AmbulanceUpdateequipmentInput | String | No |
| contact | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| color | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| vehicle_number | String | No |
| ambulance_type | String | Null | Yes |
| person | Int | No |
| version | String | No |
| organization | Int | Null | Yes |
| equipment | AmbulanceCreateequipmentInput | String | No |
| contact | Int | Null | Yes |
| color | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| vehicle_number | String | StringFieldUpdateOperationsInput | No |
| ambulance_type | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| equipment | AmbulanceUpdateequipmentInput | String | No |
| color | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| vehicle_number | String | StringFieldUpdateOperationsInput | No |
| ambulance_type | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| person | Int | IntFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| organization | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| equipment | AmbulanceUpdateequipmentInput | String | No |
| contact | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| color | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | No |
| updated_at | DateTime | No |
| established_at | DateTime | No |
| title | String | No |
| Contact_BloodCenter_contactToContact | ContactCreateNestedOneWithoutBloodCenter_BloodCenter_contactToContactInput | No |
| Person | PersonCreateNestedOneWithoutBloodCenterInput | No |
| Version | VersionCreateNestedOneWithoutBloodCenterInput | No |
| BloodDonation | BloodDonationCreateNestedManyWithoutBloodCenterInput | No |
| Contact_Contact_blood_centerToBloodCenter | ContactCreateNestedManyWithoutBloodCenter_Contact_blood_centerToBloodCenterInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| established_at | DateTime | No |
| version | String | No |
| founder | Int | No |
| contact | Int | Null | Yes |
| title | String | No |
| BloodDonation | BloodDonationUncheckedCreateNestedManyWithoutBloodCenterInput | No |
| Contact_Contact_blood_centerToBloodCenter | ContactUncheckedCreateNestedManyWithoutBloodCenter_Contact_blood_centerToBloodCenterInput | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| established_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| Contact_BloodCenter_contactToContact | ContactUpdateOneWithoutBloodCenter_BloodCenter_contactToContactNestedInput | No |
| Person | PersonUpdateOneRequiredWithoutBloodCenterNestedInput | No |
| Version | VersionUpdateOneRequiredWithoutBloodCenterNestedInput | No |
| BloodDonation | BloodDonationUpdateManyWithoutBloodCenterNestedInput | No |
| Contact_Contact_blood_centerToBloodCenter | ContactUpdateManyWithoutBloodCenter_Contact_blood_centerToBloodCenterNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| established_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| founder | Int | IntFieldUpdateOperationsInput | No |
| contact | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| title | String | StringFieldUpdateOperationsInput | No |
| BloodDonation | BloodDonationUncheckedUpdateManyWithoutBloodCenterNestedInput | No |
| Contact_Contact_blood_centerToBloodCenter | ContactUncheckedUpdateManyWithoutBloodCenter_Contact_blood_centerToBloodCenterNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| established_at | DateTime | No |
| version | String | No |
| founder | Int | No |
| contact | Int | Null | Yes |
| title | String | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| established_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| established_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| founder | Int | IntFieldUpdateOperationsInput | No |
| contact | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| title | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| amount | Int | No |
| donated_at | DateTime | No |
| referred_by | String | Null | Yes |
| test_done | NullableJsonNullValueInput | Json | No |
| bags | BloodDonationCreatebagsInput | String | No |
| media_done | String | Null | Yes |
| media_used | String | Null | Yes |
| incubation | String | Null | Yes |
| note | String | Null | Yes |
| created_at | DateTime | Null | Yes |
| updated_at | DateTime | Null | Yes |
| cabin_no | String | Null | Yes |
| reg_no | String | Null | Yes |
| BloodCenter | BloodCenterCreateNestedOneWithoutBloodDonationInput | No |
| Person | PersonCreateNestedOneWithoutBloodDonationInput | No |
| Version | VersionCreateNestedOneWithoutBloodDonationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| donor_id | Int | No |
| organization_id | Int | No |
| amount | Int | No |
| version | String | No |
| donated_at | DateTime | No |
| referred_by | String | Null | Yes |
| test_done | NullableJsonNullValueInput | Json | No |
| bags | BloodDonationCreatebagsInput | String | No |
| media_done | String | Null | Yes |
| media_used | String | Null | Yes |
| incubation | String | Null | Yes |
| note | String | Null | Yes |
| created_at | DateTime | Null | Yes |
| updated_at | DateTime | Null | Yes |
| cabin_no | String | Null | Yes |
| reg_no | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| donor_id | Int | No |
| organization_id | Int | No |
| amount | Int | No |
| version | String | No |
| donated_at | DateTime | No |
| referred_by | String | Null | Yes |
| test_done | NullableJsonNullValueInput | Json | No |
| bags | BloodDonationCreatebagsInput | String | No |
| media_done | String | Null | Yes |
| media_used | String | Null | Yes |
| incubation | String | Null | Yes |
| note | String | Null | Yes |
| created_at | DateTime | Null | Yes |
| updated_at | DateTime | Null | Yes |
| cabin_no | String | Null | Yes |
| reg_no | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| amount | Int | IntFieldUpdateOperationsInput | No |
| donated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| referred_by | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| test_done | NullableJsonNullValueInput | Json | No |
| bags | BloodDonationUpdatebagsInput | String | No |
| media_done | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| media_used | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| incubation | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| note | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| updated_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| cabin_no | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| reg_no | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | No |
| updated_at | DateTime | No |
| name | String | No |
| established_at | DateTime | No |
| Person_Club_chairmanToPerson | PersonCreateNestedOneWithoutClub_Club_chairmanToPersonInput | No |
| Contact_Club_contactToContact | ContactCreateNestedOneWithoutClub_Club_contactToContactInput | No |
| Person_Club_founderToPerson | PersonCreateNestedOneWithoutClub_Club_founderToPersonInput | No |
| Version | VersionCreateNestedOneWithoutClubInput | No |
| Person_Club_vice_chairmanToPerson | PersonCreateNestedOneWithoutClub_Club_vice_chairmanToPersonInput | No |
| Contact_Contact_clubToClub | ContactCreateNestedManyWithoutClub_Contact_clubToClubInput | No |
| Member | MemberCreateNestedManyWithoutClubInput | No |
| Organization | OrganizationCreateNestedManyWithoutClubInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| name | String | No |
| established_at | DateTime | No |
| contact | Int | No |
| version | String | No |
| chairman | Int | No |
| founder | Int | No |
| vice_chairman | Int | No |
| Contact_Contact_clubToClub | ContactUncheckedCreateNestedManyWithoutClub_Contact_clubToClubInput | No |
| Member | MemberUncheckedCreateNestedManyWithoutClubInput | No |
| Organization | OrganizationUncheckedCreateNestedManyWithoutClubInput | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| established_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Person_Club_chairmanToPerson | PersonUpdateOneRequiredWithoutClub_Club_chairmanToPersonNestedInput | No |
| Contact_Club_contactToContact | ContactUpdateOneRequiredWithoutClub_Club_contactToContactNestedInput | No |
| Person_Club_founderToPerson | PersonUpdateOneRequiredWithoutClub_Club_founderToPersonNestedInput | No |
| Version | VersionUpdateOneRequiredWithoutClubNestedInput | No |
| Person_Club_vice_chairmanToPerson | PersonUpdateOneRequiredWithoutClub_Club_vice_chairmanToPersonNestedInput | No |
| Contact_Contact_clubToClub | ContactUpdateManyWithoutClub_Contact_clubToClubNestedInput | No |
| Member | MemberUpdateManyWithoutClubNestedInput | No |
| Organization | OrganizationUpdateManyWithoutClubNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| established_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| contact | Int | IntFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| chairman | Int | IntFieldUpdateOperationsInput | No |
| founder | Int | IntFieldUpdateOperationsInput | No |
| vice_chairman | Int | IntFieldUpdateOperationsInput | No |
| Contact_Contact_clubToClub | ContactUncheckedUpdateManyWithoutClub_Contact_clubToClubNestedInput | No |
| Member | MemberUncheckedUpdateManyWithoutClubNestedInput | No |
| Organization | OrganizationUncheckedUpdateManyWithoutClubNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| name | String | No |
| established_at | DateTime | No |
| contact | Int | No |
| version | String | No |
| chairman | Int | No |
| founder | Int | No |
| vice_chairman | Int | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| established_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| established_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| contact | Int | IntFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| chairman | Int | IntFieldUpdateOperationsInput | No |
| founder | Int | IntFieldUpdateOperationsInput | No |
| vice_chairman | Int | IntFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| address_line | String | No |
| address_line_1 | String | Null | Yes |
| state | String | No |
| city | String | No |
| zip | String | No |
| phone | String | No |
| phone_1 | String | Null | Yes |
| fax | String | Null | Yes |
| String | Null | Yes | |
| email_1 | String | Null | Yes |
| website | String | Null | Yes |
| social_media | NullableJsonNullValueInput | Json | No |
| version | String | No |
| country | String | Null | Yes |
| person | Int | Null | Yes |
| club | Int | Null | Yes |
| blood_center | Int | Null | Yes |
| donation | Int | Null | Yes |
| hospital | Int | Null | Yes |
| Ambulance | AmbulanceUncheckedCreateNestedManyWithoutContactInput | No |
| BloodCenter_BloodCenter_contactToContact | BloodCenterUncheckedCreateNestedManyWithoutContact_BloodCenter_contactToContactInput | No |
| Club_Club_contactToContact | ClubUncheckedCreateNestedManyWithoutContact_Club_contactToContactInput | No |
| Hospital_Hospital_contactToContact | HospitalUncheckedCreateNestedManyWithoutContact_Hospital_contactToContactInput | No |
| Person_Person_contact_idToContact | PersonUncheckedCreateNestedManyWithoutContact_Person_contact_idToContactInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| address_line | String | No |
| address_line_1 | String | Null | Yes |
| state | String | No |
| city | String | No |
| zip | String | No |
| phone | String | No |
| phone_1 | String | Null | Yes |
| fax | String | Null | Yes |
| String | Null | Yes | |
| email_1 | String | Null | Yes |
| website | String | Null | Yes |
| social_media | NullableJsonNullValueInput | Json | No |
| version | String | No |
| country | String | Null | Yes |
| person | Int | Null | Yes |
| club | Int | Null | Yes |
| blood_center | Int | Null | Yes |
| donation | Int | Null | Yes |
| hospital | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| address_line | String | StringFieldUpdateOperationsInput | No |
| address_line_1 | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| state | String | StringFieldUpdateOperationsInput | No |
| city | String | StringFieldUpdateOperationsInput | No |
| zip | String | StringFieldUpdateOperationsInput | No |
| phone | String | StringFieldUpdateOperationsInput | No |
| phone_1 | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| fax | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| String | NullableStringFieldUpdateOperationsInput | Null | Yes | |
| email_1 | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| website | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| social_media | NullableJsonNullValueInput | Json | No |
| Name | Type | Nullable |
|---|---|---|
| alpha_3 | String | No |
| alpha_2 | String | No |
| numeric | String | No |
| name | String | No |
| created_at | DateTime | Null | Yes |
| updated_at | DateTime | Null | Yes |
| Contact | ContactCreateNestedManyWithoutCountryInput | No |
| Version | VersionCreateNestedOneWithoutCountryInput | No |
| Name | Type | Nullable |
|---|---|---|
| alpha_3 | String | No |
| alpha_2 | String | No |
| numeric | String | No |
| name | String | No |
| version | String | No |
| created_at | DateTime | Null | Yes |
| updated_at | DateTime | Null | Yes |
| Contact | ContactUncheckedCreateNestedManyWithoutCountryInput | No |
| Name | Type | Nullable |
|---|---|---|
| alpha_3 | String | StringFieldUpdateOperationsInput | No |
| alpha_2 | String | StringFieldUpdateOperationsInput | No |
| numeric | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| updated_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Contact | ContactUpdateManyWithoutCountryNestedInput | No |
| Version | VersionUpdateOneRequiredWithoutCountryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| alpha_3 | String | StringFieldUpdateOperationsInput | No |
| alpha_2 | String | StringFieldUpdateOperationsInput | No |
| numeric | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| updated_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Contact | ContactUncheckedUpdateManyWithoutCountryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| alpha_3 | String | No |
| alpha_2 | String | No |
| numeric | String | No |
| name | String | No |
| version | String | No |
| created_at | DateTime | Null | Yes |
| updated_at | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| alpha_3 | String | StringFieldUpdateOperationsInput | No |
| alpha_2 | String | StringFieldUpdateOperationsInput | No |
| numeric | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| updated_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| alpha_3 | String | StringFieldUpdateOperationsInput | No |
| alpha_2 | String | StringFieldUpdateOperationsInput | No |
| numeric | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| updated_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | Null | Yes |
| updated_at | DateTime | Null | Yes |
| name | String | Null | Yes |
| mac_address | String | Null | Yes |
| model | String | Null | Yes |
| os | String | Null | Yes |
| os_version | String | Null | Yes |
| device_id | String | Null | Yes |
| brand | String | Null | Yes |
| manufacturer | String | Null | Yes |
| Version | VersionCreateNestedOneWithoutDeviceInput | No |
| LoginRecord | LoginRecordCreateNestedManyWithoutDeviceInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | Null | Yes |
| updated_at | DateTime | Null | Yes |
| name | String | Null | Yes |
| mac_address | String | Null | Yes |
| model | String | Null | Yes |
| os | String | Null | Yes |
| os_version | String | Null | Yes |
| device_id | String | Null | Yes |
| brand | String | Null | Yes |
| manufacturer | String | Null | Yes |
| version | String | No |
| LoginRecord | LoginRecordUncheckedCreateNestedManyWithoutDeviceInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| updated_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| name | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| mac_address | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| model | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| os | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| os_version | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| device_id | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| brand | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| manufacturer | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Version | VersionUpdateOneRequiredWithoutDeviceNestedInput | No |
| LoginRecord | LoginRecordUpdateManyWithoutDeviceNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| updated_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| name | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| mac_address | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| model | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| os | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| os_version | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| device_id | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| brand | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| manufacturer | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| version | String | StringFieldUpdateOperationsInput | No |
| LoginRecord | LoginRecordUncheckedUpdateManyWithoutDeviceNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | Null | Yes |
| updated_at | DateTime | Null | Yes |
| name | String | Null | Yes |
| mac_address | String | Null | Yes |
| model | String | Null | Yes |
| os | String | Null | Yes |
| os_version | String | Null | Yes |
| device_id | String | Null | Yes |
| brand | String | Null | Yes |
| manufacturer | String | Null | Yes |
| version | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| updated_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| name | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| mac_address | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| model | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| os | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| os_version | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| device_id | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| brand | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| manufacturer | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| updated_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| name | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| mac_address | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| model | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| os | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| os_version | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| device_id | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| brand | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| manufacturer | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| version | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | No |
| updated_at | DateTime | No |
| amount | Int | No |
| donated_at | DateTime | No |
| Contact | ContactCreateNestedManyWithoutDonationInput | No |
| Member | MemberCreateNestedOneWithoutDonationInput | No |
| Organization | OrganizationCreateNestedOneWithoutDonationInput | No |
| Person | PersonCreateNestedOneWithoutDonationInput | No |
| Version | VersionCreateNestedOneWithoutDonationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| amount | Int | No |
| donated_at | DateTime | No |
| version | String | No |
| person | Int | No |
| member | Int | No |
| organization | Int | No |
| Contact | ContactUncheckedCreateNestedManyWithoutDonationInput | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| amount | Int | IntFieldUpdateOperationsInput | No |
| donated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Contact | ContactUpdateManyWithoutDonationNestedInput | No |
| Member | MemberUpdateOneRequiredWithoutDonationNestedInput | No |
| Organization | OrganizationUpdateOneRequiredWithoutDonationNestedInput | No |
| Person | PersonUpdateOneRequiredWithoutDonationNestedInput | No |
| Version | VersionUpdateOneRequiredWithoutDonationNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| amount | Int | IntFieldUpdateOperationsInput | No |
| donated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| person | Int | IntFieldUpdateOperationsInput | No |
| member | Int | IntFieldUpdateOperationsInput | No |
| organization | Int | IntFieldUpdateOperationsInput | No |
| Contact | ContactUncheckedUpdateManyWithoutDonationNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| amount | Int | No |
| donated_at | DateTime | No |
| version | String | No |
| person | Int | No |
| member | Int | No |
| organization | Int | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| amount | Int | IntFieldUpdateOperationsInput | No |
| donated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| amount | Int | IntFieldUpdateOperationsInput | No |
| donated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| person | Int | IntFieldUpdateOperationsInput | No |
| member | Int | IntFieldUpdateOperationsInput | No |
| organization | Int | IntFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | No |
| updated_at | DateTime | No |
| name | String | No |
| founded_at | DateTime | No |
| accreditation | String | Null | Yes |
| bed_count | Int | Null | Yes |
| emergency_room | Boolean | Null | Yes |
| services | HospitalCreateservicesInput | String | No |
| specialties | HospitalCreatespecialtiesInput | String | No |
| rating | Float | Null | Yes |
| facility_type | FacilityType | Null | Yes |
| ownership | String | Null | Yes |
| insurance_accepted | String | Null | Yes |
| operating_hours | String | Null | Yes |
| infrastructure | String | Null | Yes |
| security_controls | String | Null | Yes |
| founder | Int | Null | Yes |
| director | Int | Null | Yes |
| chairman | Int | Null | Yes |
| Contact_Contact_hospitalToHospital | ContactCreateNestedManyWithoutHospital_Contact_hospitalToHospitalInput | No |
| Contact_Hospital_contactToContact | ContactCreateNestedOneWithoutHospital_Hospital_contactToContactInput | No |
| Location | LocationCreateNestedOneWithoutHospitalInput | No |
| Version | VersionCreateNestedOneWithoutHospitalInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| name | String | No |
| founded_at | DateTime | No |
| accreditation | String | Null | Yes |
| bed_count | Int | Null | Yes |
| emergency_room | Boolean | Null | Yes |
| services | HospitalCreateservicesInput | String | No |
| specialties | HospitalCreatespecialtiesInput | String | No |
| rating | Float | Null | Yes |
| facility_type | FacilityType | Null | Yes |
| ownership | String | Null | Yes |
| insurance_accepted | String | Null | Yes |
| operating_hours | String | Null | Yes |
| infrastructure | String | Null | Yes |
| security_controls | String | Null | Yes |
| version | String | No |
| location | Int | Null | Yes |
| contact | Int | Null | Yes |
| founder | Int | Null | Yes |
| director | Int | Null | Yes |
| chairman | Int | Null | Yes |
| Contact_Contact_hospitalToHospital | ContactUncheckedCreateNestedManyWithoutHospital_Contact_hospitalToHospitalInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| name | String | No |
| founded_at | DateTime | No |
| accreditation | String | Null | Yes |
| bed_count | Int | Null | Yes |
| emergency_room | Boolean | Null | Yes |
| services | HospitalCreateservicesInput | String | No |
| specialties | HospitalCreatespecialtiesInput | String | No |
| rating | Float | Null | Yes |
| facility_type | FacilityType | Null | Yes |
| ownership | String | Null | Yes |
| insurance_accepted | String | Null | Yes |
| operating_hours | String | Null | Yes |
| infrastructure | String | Null | Yes |
| security_controls | String | Null | Yes |
| version | String | No |
| location | Int | Null | Yes |
| contact | Int | Null | Yes |
| founder | Int | Null | Yes |
| director | Int | Null | Yes |
| chairman | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| latitude | Float | No |
| longitude | Float | No |
| created_at | DateTime | Null | Yes |
| updated_at | DateTime | Null | Yes |
| Hospital | HospitalCreateNestedManyWithoutLocationInput | No |
| Version | VersionCreateNestedOneWithoutLocationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| latitude | Float | No |
| longitude | Float | No |
| version | String | No |
| created_at | DateTime | Null | Yes |
| updated_at | DateTime | Null | Yes |
| Hospital | HospitalUncheckedCreateNestedManyWithoutLocationInput | No |
| Name | Type | Nullable |
|---|---|---|
| latitude | Float | FloatFieldUpdateOperationsInput | No |
| longitude | Float | FloatFieldUpdateOperationsInput | No |
| created_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| updated_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Hospital | HospitalUpdateManyWithoutLocationNestedInput | No |
| Version | VersionUpdateOneRequiredWithoutLocationNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| latitude | Float | FloatFieldUpdateOperationsInput | No |
| longitude | Float | FloatFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| updated_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Hospital | HospitalUncheckedUpdateManyWithoutLocationNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| latitude | Float | No |
| longitude | Float | No |
| version | String | No |
| created_at | DateTime | Null | Yes |
| updated_at | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| latitude | Float | FloatFieldUpdateOperationsInput | No |
| longitude | Float | FloatFieldUpdateOperationsInput | No |
| created_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| updated_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| latitude | Float | FloatFieldUpdateOperationsInput | No |
| longitude | Float | FloatFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| updated_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| user | Int | No |
| ip_address | String | No |
| user_agent | String | No |
| login_status | String | No |
| session_id | String | Null | Yes |
| location | String | Null | Yes |
| authentication | AuthenticationMethod | Null | Yes |
| security_tokens | String | Null | Yes |
| logout_timestamp | DateTime | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Device | DeviceCreateNestedOneWithoutLoginRecordInput | No |
| Version | VersionCreateNestedOneWithoutLoginRecordInput | No |
| OrganizationSettings | OrganizationSettingsCreateNestedManyWithoutLoginRecordInput | No |
| User | UserCreateNestedManyWithoutLoginRecordInput | No |
| UserSettings | UserSettingsCreateNestedManyWithoutLoginRecordInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| user | Int | No |
| ip_address | String | No |
| user_agent | String | No |
| login_status | String | No |
| session_id | String | Null | Yes |
| location | String | Null | Yes |
| authentication | AuthenticationMethod | Null | Yes |
| security_tokens | String | Null | Yes |
| logout_timestamp | DateTime | Null | Yes |
| version | String | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| devices | Int | Null | Yes |
| OrganizationSettings | OrganizationSettingsUncheckedCreateNestedManyWithoutLoginRecordInput | No |
| User | UserUncheckedCreateNestedManyWithoutLoginRecordInput | No |
| UserSettings | UserSettingsUncheckedCreateNestedManyWithoutLoginRecordInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| user | Int | No |
| ip_address | String | No |
| user_agent | String | No |
| login_status | String | No |
| session_id | String | Null | Yes |
| location | String | Null | Yes |
| authentication | AuthenticationMethod | Null | Yes |
| security_tokens | String | Null | Yes |
| logout_timestamp | DateTime | Null | Yes |
| version | String | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| devices | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| user | Int | IntFieldUpdateOperationsInput | No |
| ip_address | String | StringFieldUpdateOperationsInput | No |
| user_agent | String | StringFieldUpdateOperationsInput | No |
| login_status | String | StringFieldUpdateOperationsInput | No |
| session_id | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| location | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| authentication | AuthenticationMethod | NullableEnumAuthenticationMethodFieldUpdateOperationsInput | Null | Yes |
| security_tokens | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| logout_timestamp | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| user | Int | IntFieldUpdateOperationsInput | No |
| ip_address | String | StringFieldUpdateOperationsInput | No |
| user_agent | String | StringFieldUpdateOperationsInput | No |
| login_status | String | StringFieldUpdateOperationsInput | No |
| session_id | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| location | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| authentication | AuthenticationMethod | NullableEnumAuthenticationMethodFieldUpdateOperationsInput | Null | Yes |
| security_tokens | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| logout_timestamp | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| version | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| devices | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | No |
| updated_at | DateTime | No |
| allergies | String | Null | Yes |
| complications | String | Null | Yes |
| medications | String | Null | Yes |
| blood_disorders | String | Null | Yes |
| infectious_diseases | String | Null | Yes |
| last_blood_donation | DateTime | Null | Yes |
| medical_conditions | String | Null | Yes |
| Donation | DonationCreateNestedManyWithoutMemberInput | No |
| Club | ClubCreateNestedOneWithoutMemberInput | No |
| Person | PersonCreateNestedOneWithoutMemberInput | No |
| Version | VersionCreateNestedOneWithoutMemberInput | No |
| Request | RequestCreateNestedManyWithoutMemberInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| version | String | No |
| allergies | String | Null | Yes |
| complications | String | Null | Yes |
| medications | String | Null | Yes |
| blood_disorders | String | Null | Yes |
| club_id | Int | Null | Yes |
| infectious_diseases | String | Null | Yes |
| last_blood_donation | DateTime | Null | Yes |
| medical_conditions | String | Null | Yes |
| person_id | Int | Null | Yes |
| Donation | DonationUncheckedCreateNestedManyWithoutMemberInput | No |
| Request | RequestUncheckedCreateNestedManyWithoutMemberInput | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| allergies | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| complications | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| medications | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| blood_disorders | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| infectious_diseases | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| last_blood_donation | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| medical_conditions | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Donation | DonationUpdateManyWithoutMemberNestedInput | No |
| Club | ClubUpdateOneWithoutMemberNestedInput | No |
| Person | PersonUpdateOneWithoutMemberNestedInput | No |
| Version | VersionUpdateOneRequiredWithoutMemberNestedInput | No |
| Request | RequestUpdateManyWithoutMemberNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| version | String | No |
| allergies | String | Null | Yes |
| complications | String | Null | Yes |
| medications | String | Null | Yes |
| blood_disorders | String | Null | Yes |
| club_id | Int | Null | Yes |
| infectious_diseases | String | Null | Yes |
| last_blood_donation | DateTime | Null | Yes |
| medical_conditions | String | Null | Yes |
| person_id | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| allergies | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| complications | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| medications | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| blood_disorders | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| infectious_diseases | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| last_blood_donation | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| medical_conditions | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| allergies | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| complications | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| medications | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| blood_disorders | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| club_id | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| infectious_diseases | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| last_blood_donation | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| medical_conditions | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| person_id | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | No |
| updated_at | DateTime | No |
| org_type | OrgType | No |
| org_id | Int | No |
| Volunteer | JsonNullValueInput | Json | No |
| Ambulance | AmbulanceCreateNestedManyWithoutOrganizationInput | No |
| Donation | DonationCreateNestedManyWithoutOrganizationInput | No |
| Club | ClubCreateNestedOneWithoutOrganizationInput | No |
| OrganizationSettings | OrganizationSettingsCreateNestedOneWithoutOrganizationInput | No |
| Person | PersonCreateNestedOneWithoutOrganizationInput | No |
| Version | VersionCreateNestedOneWithoutOrganizationInput | No |
| Support | SupportCreateNestedManyWithoutOrganizationInput | No |
| SupportMessage | SupportMessageCreateNestedManyWithoutOrganizationInput | No |
| Team | TeamCreateNestedManyWithoutOrganizationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| org_type | OrgType | No |
| org_id | Int | No |
| Volunteer | JsonNullValueInput | Json | No |
| personId | Int | No |
| organizationSettingsId | Int | No |
| clubId | Int | Null | Yes |
| version | String | No |
| Ambulance | AmbulanceUncheckedCreateNestedManyWithoutOrganizationInput | No |
| Donation | DonationUncheckedCreateNestedManyWithoutOrganizationInput | No |
| Support | SupportUncheckedCreateNestedManyWithoutOrganizationInput | No |
| SupportMessage | SupportMessageUncheckedCreateNestedManyWithoutOrganizationInput | No |
| Team | TeamUncheckedCreateNestedManyWithoutOrganizationInput | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| org_type | OrgType | EnumOrgTypeFieldUpdateOperationsInput | No |
| org_id | Int | IntFieldUpdateOperationsInput | No |
| Volunteer | JsonNullValueInput | Json | No |
| Ambulance | AmbulanceUpdateManyWithoutOrganizationNestedInput | No |
| Donation | DonationUpdateManyWithoutOrganizationNestedInput | No |
| Club | ClubUpdateOneWithoutOrganizationNestedInput | No |
| OrganizationSettings | OrganizationSettingsUpdateOneRequiredWithoutOrganizationNestedInput | No |
| Person | PersonUpdateOneRequiredWithoutOrganizationNestedInput | No |
| Version | VersionUpdateOneRequiredWithoutOrganizationNestedInput | No |
| Support | SupportUpdateManyWithoutOrganizationNestedInput | No |
| SupportMessage | SupportMessageUpdateManyWithoutOrganizationNestedInput | No |
| Team | TeamUpdateManyWithoutOrganizationNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| org_type | OrgType | EnumOrgTypeFieldUpdateOperationsInput | No |
| org_id | Int | IntFieldUpdateOperationsInput | No |
| Volunteer | JsonNullValueInput | Json | No |
| personId | Int | IntFieldUpdateOperationsInput | No |
| organizationSettingsId | Int | IntFieldUpdateOperationsInput | No |
| clubId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| version | String | StringFieldUpdateOperationsInput | No |
| Ambulance | AmbulanceUncheckedUpdateManyWithoutOrganizationNestedInput | No |
| Donation | DonationUncheckedUpdateManyWithoutOrganizationNestedInput | No |
| Support | SupportUncheckedUpdateManyWithoutOrganizationNestedInput | No |
| SupportMessage | SupportMessageUncheckedUpdateManyWithoutOrganizationNestedInput | No |
| Team | TeamUncheckedUpdateManyWithoutOrganizationNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| org_type | OrgType | No |
| org_id | Int | No |
| Volunteer | JsonNullValueInput | Json | No |
| personId | Int | No |
| organizationSettingsId | Int | No |
| clubId | Int | Null | Yes |
| version | String | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| org_type | OrgType | EnumOrgTypeFieldUpdateOperationsInput | No |
| org_id | Int | IntFieldUpdateOperationsInput | No |
| Volunteer | JsonNullValueInput | Json | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| org_type | OrgType | EnumOrgTypeFieldUpdateOperationsInput | No |
| org_id | Int | IntFieldUpdateOperationsInput | No |
| Volunteer | JsonNullValueInput | Json | No |
| personId | Int | IntFieldUpdateOperationsInput | No |
| organizationSettingsId | Int | IntFieldUpdateOperationsInput | No |
| clubId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| version | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | No |
| updated_at | DateTime | No |
| language | Language | No |
| time_format | TimeFormat | No |
| date_format | DateFormat | No |
| timezone | Timezone | No |
| theme | Theme | Null | Yes |
| email_notifications | Boolean | No |
| phone_notification | Boolean | No |
| push_notifications | Boolean | No |
| two_factor_auth | Boolean | Null | Yes |
| accountDeactivation | Boolean | Null | Yes |
| avatar | String | Null | Yes |
| clearBrowsingData | Boolean | Null | Yes |
| contactSupportLink | String | Null | Yes |
| dataRetentionDays | Int | Null | Yes |
| dataSharing | Boolean | Null | Yes |
| helpCenterLink | String | Null | Yes |
| high_contrast_mode | Boolean | Null | Yes |
| in_app_notifications | Boolean | Null | Yes |
| key_board_shortcut | Boolean | Null | Yes |
| notification_frequency | String | Null | Yes |
| notification_sound | String | Null | Yes |
| notification_vibrate | Boolean | Null | Yes |
| password_reset | Boolean | Null | Yes |
| security_answer | String | Null | Yes |
| security_question | String | Null | Yes |
| username | String | Null | Yes |
| Organization | OrganizationCreateNestedManyWithoutOrganizationSettingsInput | No |
| LoginRecord | LoginRecordCreateNestedOneWithoutOrganizationSettingsInput | No |
| Version | VersionCreateNestedOneWithoutOrganizationSettingsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| language | Language | No |
| time_format | TimeFormat | No |
| date_format | DateFormat | No |
| timezone | Timezone | No |
| theme | Theme | Null | Yes |
| email_notifications | Boolean | No |
| phone_notification | Boolean | No |
| push_notifications | Boolean | No |
| two_factor_auth | Boolean | Null | Yes |
| loginRecordId | Int | Null | Yes |
| accountDeactivation | Boolean | Null | Yes |
| avatar | String | Null | Yes |
| clearBrowsingData | Boolean | Null | Yes |
| contactSupportLink | String | Null | Yes |
| dataRetentionDays | Int | Null | Yes |
| dataSharing | Boolean | Null | Yes |
| helpCenterLink | String | Null | Yes |
| high_contrast_mode | Boolean | Null | Yes |
| in_app_notifications | Boolean | Null | Yes |
| key_board_shortcut | Boolean | Null | Yes |
| notification_frequency | String | Null | Yes |
| notification_sound | String | Null | Yes |
| notification_vibrate | Boolean | Null | Yes |
| password_reset | Boolean | Null | Yes |
| security_answer | String | Null | Yes |
| security_question | String | Null | Yes |
| username | String | Null | Yes |
| version | String | No |
| Organization | OrganizationUncheckedCreateNestedManyWithoutOrganizationSettingsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| language | Language | No |
| time_format | TimeFormat | No |
| date_format | DateFormat | No |
| timezone | Timezone | No |
| theme | Theme | Null | Yes |
| email_notifications | Boolean | No |
| phone_notification | Boolean | No |
| push_notifications | Boolean | No |
| two_factor_auth | Boolean | Null | Yes |
| loginRecordId | Int | Null | Yes |
| accountDeactivation | Boolean | Null | Yes |
| avatar | String | Null | Yes |
| clearBrowsingData | Boolean | Null | Yes |
| contactSupportLink | String | Null | Yes |
| dataRetentionDays | Int | Null | Yes |
| dataSharing | Boolean | Null | Yes |
| helpCenterLink | String | Null | Yes |
| high_contrast_mode | Boolean | Null | Yes |
| in_app_notifications | Boolean | Null | Yes |
| key_board_shortcut | Boolean | Null | Yes |
| notification_frequency | String | Null | Yes |
| notification_sound | String | Null | Yes |
| notification_vibrate | Boolean | Null | Yes |
| password_reset | Boolean | Null | Yes |
| security_answer | String | Null | Yes |
| security_question | String | Null | Yes |
| username | String | Null | Yes |
| version | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| first_name | String | No |
| last_name | String | Null | Yes |
| father_name | String | Null | Yes |
| mother_name | String | Null | Yes |
| profession | String | Null | Yes |
| dob | DateTime | Null | Yes |
| gender | Gender | Null | Yes |
| version | String | No |
| avatar | String | Null | Yes |
| contact_id | Int | No |
| teamId | Int | Null | Yes |
| bid | String | Null | Yes |
| driving | String | Null | Yes |
| nid | String | Null | Yes |
| passport | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| first_name | String | StringFieldUpdateOperationsInput | No |
| last_name | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| father_name | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| mother_name | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| profession | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| dob | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| gender | Gender | NullableEnumGenderFieldUpdateOperationsInput | Null | Yes |
| avatar | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| bid | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| driving | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| nid | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| passport | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | No |
| updated_at | DateTime | No |
| health_issue | String | No |
| blood_group | BloodGroup | No |
| quantity | Int | No |
| donation_type | String | No |
| datetime | DateTime | No |
| hospital_name | String | No |
| hospital_address | String | No |
| hospital_phone | String | No |
| hospital_email | String | No |
| Member | MemberCreateNestedOneWithoutRequestInput | No |
| Person | PersonCreateNestedOneWithoutRequestInput | No |
| Version | VersionCreateNestedOneWithoutRequestInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| health_issue | String | No |
| blood_group | BloodGroup | No |
| quantity | Int | No |
| donation_type | String | No |
| datetime | DateTime | No |
| hospital_name | String | No |
| hospital_address | String | No |
| hospital_phone | String | No |
| hospital_email | String | No |
| version | String | No |
| memberId | Int | Null | Yes |
| personId | Int | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| health_issue | String | StringFieldUpdateOperationsInput | No |
| blood_group | BloodGroup | EnumBloodGroupFieldUpdateOperationsInput | No |
| quantity | Int | IntFieldUpdateOperationsInput | No |
| donation_type | String | StringFieldUpdateOperationsInput | No |
| datetime | DateTime | DateTimeFieldUpdateOperationsInput | No |
| hospital_name | String | StringFieldUpdateOperationsInput | No |
| hospital_address | String | StringFieldUpdateOperationsInput | No |
| hospital_phone | String | StringFieldUpdateOperationsInput | No |
| hospital_email | String | StringFieldUpdateOperationsInput | No |
| Member | MemberUpdateOneWithoutRequestNestedInput | No |
| Person | PersonUpdateOneRequiredWithoutRequestNestedInput | No |
| Version | VersionUpdateOneRequiredWithoutRequestNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| health_issue | String | StringFieldUpdateOperationsInput | No |
| blood_group | BloodGroup | EnumBloodGroupFieldUpdateOperationsInput | No |
| quantity | Int | IntFieldUpdateOperationsInput | No |
| donation_type | String | StringFieldUpdateOperationsInput | No |
| datetime | DateTime | DateTimeFieldUpdateOperationsInput | No |
| hospital_name | String | StringFieldUpdateOperationsInput | No |
| hospital_address | String | StringFieldUpdateOperationsInput | No |
| hospital_phone | String | StringFieldUpdateOperationsInput | No |
| hospital_email | String | StringFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| memberId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| personId | Int | IntFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| health_issue | String | No |
| blood_group | BloodGroup | No |
| quantity | Int | No |
| donation_type | String | No |
| datetime | DateTime | No |
| hospital_name | String | No |
| hospital_address | String | No |
| hospital_phone | String | No |
| hospital_email | String | No |
| version | String | No |
| memberId | Int | Null | Yes |
| personId | Int | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| health_issue | String | StringFieldUpdateOperationsInput | No |
| blood_group | BloodGroup | EnumBloodGroupFieldUpdateOperationsInput | No |
| quantity | Int | IntFieldUpdateOperationsInput | No |
| donation_type | String | StringFieldUpdateOperationsInput | No |
| datetime | DateTime | DateTimeFieldUpdateOperationsInput | No |
| hospital_name | String | StringFieldUpdateOperationsInput | No |
| hospital_address | String | StringFieldUpdateOperationsInput | No |
| hospital_phone | String | StringFieldUpdateOperationsInput | No |
| hospital_email | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| health_issue | String | StringFieldUpdateOperationsInput | No |
| blood_group | BloodGroup | EnumBloodGroupFieldUpdateOperationsInput | No |
| quantity | Int | IntFieldUpdateOperationsInput | No |
| donation_type | String | StringFieldUpdateOperationsInput | No |
| datetime | DateTime | DateTimeFieldUpdateOperationsInput | No |
| hospital_name | String | StringFieldUpdateOperationsInput | No |
| hospital_address | String | StringFieldUpdateOperationsInput | No |
| hospital_phone | String | StringFieldUpdateOperationsInput | No |
| hospital_email | String | StringFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| memberId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| personId | Int | IntFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| question | String | No |
| answer | String | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| User | UserCreateNestedOneWithoutSecurityQuestionInput | No |
| Version | VersionCreateNestedOneWithoutSecurityQuestionInput | No |
| UserSettings | UserSettingsCreateNestedManyWithoutSecurityQuestionInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| question | String | No |
| answer | String | No |
| userId | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| version | String | No |
| UserSettings | UserSettingsUncheckedCreateNestedManyWithoutSecurityQuestionInput | No |
| Name | Type | Nullable |
|---|---|---|
| question | String | StringFieldUpdateOperationsInput | No |
| answer | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| User | UserUpdateOneRequiredWithoutSecurityQuestionNestedInput | No |
| Version | VersionUpdateOneRequiredWithoutSecurityQuestionNestedInput | No |
| UserSettings | UserSettingsUpdateManyWithoutSecurityQuestionNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| question | String | StringFieldUpdateOperationsInput | No |
| answer | String | StringFieldUpdateOperationsInput | No |
| userId | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| UserSettings | UserSettingsUncheckedUpdateManyWithoutSecurityQuestionNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| question | String | No |
| answer | String | No |
| userId | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| version | String | No |
| Name | Type | Nullable |
|---|---|---|
| question | String | StringFieldUpdateOperationsInput | No |
| answer | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| question | String | StringFieldUpdateOperationsInput | No |
| answer | String | StringFieldUpdateOperationsInput | No |
| userId | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| String | Null | Yes | |
| String | Null | Yes | |
| String | Null | Yes | |
| userId | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Version | VersionCreateNestedOneWithoutSocialMediaLinksInput | No |
| User | UserCreateNestedManyWithoutSocialMediaLinksInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| String | Null | Yes | |
| String | Null | Yes | |
| String | Null | Yes | |
| userId | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| version | String | No |
| User | UserUncheckedCreateNestedManyWithoutSocialMediaLinksInput | No |
| Name | Type | Nullable |
|---|---|---|
| String | NullableStringFieldUpdateOperationsInput | Null | Yes | |
| String | NullableStringFieldUpdateOperationsInput | Null | Yes | |
| String | NullableStringFieldUpdateOperationsInput | Null | Yes | |
| userId | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Version | VersionUpdateOneRequiredWithoutSocialMediaLinksNestedInput | No |
| User | UserUpdateManyWithoutSocialMediaLinksNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| String | NullableStringFieldUpdateOperationsInput | Null | Yes | |
| String | NullableStringFieldUpdateOperationsInput | Null | Yes | |
| String | NullableStringFieldUpdateOperationsInput | Null | Yes | |
| userId | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| User | UserUncheckedUpdateManyWithoutSocialMediaLinksNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| String | Null | Yes | |
| String | Null | Yes | |
| String | Null | Yes | |
| userId | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| version | String | No |
| Name | Type | Nullable |
|---|---|---|
| String | NullableStringFieldUpdateOperationsInput | Null | Yes | |
| String | NullableStringFieldUpdateOperationsInput | Null | Yes | |
| String | NullableStringFieldUpdateOperationsInput | Null | Yes | |
| userId | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| String | NullableStringFieldUpdateOperationsInput | Null | Yes | |
| String | NullableStringFieldUpdateOperationsInput | Null | Yes | |
| String | NullableStringFieldUpdateOperationsInput | Null | Yes | |
| userId | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | No |
| updated_at | DateTime | No |
| messages | String | Null | Yes |
| status | String | Null | Yes |
| priority | Int | No |
| subject | String | Null | Yes |
| Organization | OrganizationCreateNestedOneWithoutSupportInput | No |
| Version | VersionCreateNestedOneWithoutSupportInput | No |
| SupportMessage | SupportMessageCreateNestedManyWithoutSupportInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| version | String | No |
| organization | Int | No |
| messages | String | Null | Yes |
| status | String | Null | Yes |
| priority | Int | No |
| subject | String | Null | Yes |
| SupportMessage | SupportMessageUncheckedCreateNestedManyWithoutSupportInput | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| messages | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| status | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| priority | Int | IntFieldUpdateOperationsInput | No |
| subject | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Organization | OrganizationUpdateOneRequiredWithoutSupportNestedInput | No |
| Version | VersionUpdateOneRequiredWithoutSupportNestedInput | No |
| SupportMessage | SupportMessageUpdateManyWithoutSupportNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| organization | Int | IntFieldUpdateOperationsInput | No |
| messages | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| status | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| priority | Int | IntFieldUpdateOperationsInput | No |
| subject | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| SupportMessage | SupportMessageUncheckedUpdateManyWithoutSupportNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| version | String | No |
| organization | Int | No |
| messages | String | Null | Yes |
| status | String | Null | Yes |
| priority | Int | No |
| subject | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| messages | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| status | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| priority | Int | IntFieldUpdateOperationsInput | No |
| subject | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| organization | Int | IntFieldUpdateOperationsInput | No |
| messages | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| status | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| priority | Int | IntFieldUpdateOperationsInput | No |
| subject | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| message | String | No |
| Person | PersonCreateNestedOneWithoutSupportMessageInput | No |
| Organization | OrganizationCreateNestedOneWithoutSupportMessageInput | No |
| Support | SupportCreateNestedOneWithoutSupportMessageInput | No |
| Version | VersionCreateNestedOneWithoutSupportMessageInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| organization | Int | No |
| support | Int | No |
| message | String | No |
| author | Int | No |
| version | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| message | String | StringFieldUpdateOperationsInput | No |
| Person | PersonUpdateOneRequiredWithoutSupportMessageNestedInput | No |
| Organization | OrganizationUpdateOneRequiredWithoutSupportMessageNestedInput | No |
| Support | SupportUpdateOneRequiredWithoutSupportMessageNestedInput | No |
| Version | VersionUpdateOneRequiredWithoutSupportMessageNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| organization | Int | IntFieldUpdateOperationsInput | No |
| support | Int | IntFieldUpdateOperationsInput | No |
| message | String | StringFieldUpdateOperationsInput | No |
| author | Int | IntFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| organization | Int | No |
| support | Int | No |
| message | String | No |
| author | Int | No |
| version | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| message | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| organization | Int | IntFieldUpdateOperationsInput | No |
| support | Int | IntFieldUpdateOperationsInput | No |
| message | String | StringFieldUpdateOperationsInput | No |
| author | Int | IntFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | No |
| updated_at | DateTime | No |
| started_at | DateTime | No |
| ended_at | DateTime | No |
| status | String | No |
| Person_Person_teamIdToTeam | PersonCreateNestedManyWithoutTeam_Person_teamIdToTeamInput | No |
| Person_Team_membersToPerson | PersonCreateNestedOneWithoutTeam_Team_membersToPersonInput | No |
| Organization | OrganizationCreateNestedOneWithoutTeamInput | No |
| Version | VersionCreateNestedOneWithoutTeamInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| started_at | DateTime | No |
| ended_at | DateTime | No |
| organization | Int | No |
| version | String | No |
| members | Int | No |
| status | String | No |
| Person_Person_teamIdToTeam | PersonUncheckedCreateNestedManyWithoutTeam_Person_teamIdToTeamInput | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| started_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| ended_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| status | String | StringFieldUpdateOperationsInput | No |
| Person_Person_teamIdToTeam | PersonUpdateManyWithoutTeam_Person_teamIdToTeamNestedInput | No |
| Person_Team_membersToPerson | PersonUpdateOneRequiredWithoutTeam_Team_membersToPersonNestedInput | No |
| Organization | OrganizationUpdateOneRequiredWithoutTeamNestedInput | No |
| Version | VersionUpdateOneRequiredWithoutTeamNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| started_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| ended_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| organization | Int | IntFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| members | Int | IntFieldUpdateOperationsInput | No |
| status | String | StringFieldUpdateOperationsInput | No |
| Person_Person_teamIdToTeam | PersonUncheckedUpdateManyWithoutTeam_Person_teamIdToTeamNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| started_at | DateTime | No |
| ended_at | DateTime | No |
| organization | Int | No |
| version | String | No |
| members | Int | No |
| status | String | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| started_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| ended_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| status | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| started_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| ended_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| organization | Int | IntFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| members | Int | IntFieldUpdateOperationsInput | No |
| status | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| is_enabled | Boolean | No |
| secret_key | String | Null | Yes |
| user_id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Version | VersionCreateNestedOneWithoutTwoFactorAuthInput | No |
| User | UserCreateNestedManyWithoutTwoFactorAuthInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| is_enabled | Boolean | No |
| secret_key | String | Null | Yes |
| user_id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| version | String | No |
| User | UserUncheckedCreateNestedManyWithoutTwoFactorAuthInput | No |
| Name | Type | Nullable |
|---|---|---|
| is_enabled | Boolean | BoolFieldUpdateOperationsInput | No |
| secret_key | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| user_id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Version | VersionUpdateOneRequiredWithoutTwoFactorAuthNestedInput | No |
| User | UserUpdateManyWithoutTwoFactorAuthNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| is_enabled | Boolean | BoolFieldUpdateOperationsInput | No |
| secret_key | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| user_id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| User | UserUncheckedUpdateManyWithoutTwoFactorAuthNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| is_enabled | Boolean | No |
| secret_key | String | Null | Yes |
| user_id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| version | String | No |
| Name | Type | Nullable |
|---|---|---|
| is_enabled | Boolean | BoolFieldUpdateOperationsInput | No |
| secret_key | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| user_id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| is_enabled | Boolean | BoolFieldUpdateOperationsInput | No |
| secret_key | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| user_id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| username | String | Null | Yes |
| String | No | |
| password | String | No |
| status | AccountStatus | No |
| ip | String | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| SecurityQuestion | SecurityQuestionCreateNestedManyWithoutUserInput | No |
| LoginRecord | LoginRecordCreateNestedOneWithoutUserInput | No |
| Person | PersonCreateNestedOneWithoutUserInput | No |
| SocialMediaLinks | SocialMediaLinksCreateNestedOneWithoutUserInput | No |
| TwoFactorAuth | TwoFactorAuthCreateNestedOneWithoutUserInput | No |
| UserSettings | UserSettingsCreateNestedOneWithoutUserInput | No |
| Version | VersionCreateNestedOneWithoutUserInput | No |
| UserRole | UserRoleCreateNestedManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| username | String | Null | Yes |
| String | No | |
| password | String | No |
| status | AccountStatus | No |
| ip | String | No |
| two_factor_auth | Int | No |
| social_login | Int | No |
| logins | Int | No |
| person | Int | No |
| settings | Int | No |
| version | String | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| SecurityQuestion | SecurityQuestionUncheckedCreateNestedManyWithoutUserInput | No |
| UserRole | UserRoleUncheckedCreateNestedManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| username | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| String | StringFieldUpdateOperationsInput | No | |
| password | String | StringFieldUpdateOperationsInput | No |
| status | AccountStatus | EnumAccountStatusFieldUpdateOperationsInput | No |
| ip | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| SecurityQuestion | SecurityQuestionUpdateManyWithoutUserNestedInput | No |
| LoginRecord | LoginRecordUpdateOneRequiredWithoutUserNestedInput | No |
| Person | PersonUpdateOneRequiredWithoutUserNestedInput | No |
| SocialMediaLinks | SocialMediaLinksUpdateOneRequiredWithoutUserNestedInput | No |
| TwoFactorAuth | TwoFactorAuthUpdateOneRequiredWithoutUserNestedInput | No |
| UserSettings | UserSettingsUpdateOneRequiredWithoutUserNestedInput | No |
| Version | VersionUpdateOneRequiredWithoutUserNestedInput | No |
| UserRole | UserRoleUpdateManyWithoutUserNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| username | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| String | StringFieldUpdateOperationsInput | No | |
| password | String | StringFieldUpdateOperationsInput | No |
| status | AccountStatus | EnumAccountStatusFieldUpdateOperationsInput | No |
| ip | String | StringFieldUpdateOperationsInput | No |
| two_factor_auth | Int | IntFieldUpdateOperationsInput | No |
| social_login | Int | IntFieldUpdateOperationsInput | No |
| logins | Int | IntFieldUpdateOperationsInput | No |
| person | Int | IntFieldUpdateOperationsInput | No |
| settings | Int | IntFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| SecurityQuestion | SecurityQuestionUncheckedUpdateManyWithoutUserNestedInput | No |
| UserRole | UserRoleUncheckedUpdateManyWithoutUserNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| username | String | Null | Yes |
| String | No | |
| password | String | No |
| status | AccountStatus | No |
| ip | String | No |
| two_factor_auth | Int | No |
| social_login | Int | No |
| logins | Int | No |
| person | Int | No |
| settings | Int | No |
| version | String | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| username | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| String | StringFieldUpdateOperationsInput | No | |
| password | String | StringFieldUpdateOperationsInput | No |
| status | AccountStatus | EnumAccountStatusFieldUpdateOperationsInput | No |
| ip | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| username | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| String | StringFieldUpdateOperationsInput | No | |
| password | String | StringFieldUpdateOperationsInput | No |
| status | AccountStatus | EnumAccountStatusFieldUpdateOperationsInput | No |
| ip | String | StringFieldUpdateOperationsInput | No |
| two_factor_auth | Int | IntFieldUpdateOperationsInput | No |
| social_login | Int | IntFieldUpdateOperationsInput | No |
| logins | Int | IntFieldUpdateOperationsInput | No |
| person | Int | IntFieldUpdateOperationsInput | No |
| settings | Int | IntFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| name | String | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| User | UserCreateNestedOneWithoutUserRoleInput | No |
| Version | VersionCreateNestedOneWithoutUserRoleInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| user_id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| version | String | No |
| Name | Type | Nullable |
|---|---|---|
| name | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| User | UserUpdateOneRequiredWithoutUserRoleNestedInput | No |
| Version | VersionUpdateOneRequiredWithoutUserRoleNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| user_id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| user_id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| version | String | No |
| Name | Type | Nullable |
|---|---|---|
| name | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| user_id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | No |
| updated_at | DateTime | No |
| language | Language | No |
| time_format | TimeFormat | No |
| date_format | DateFormat | No |
| timezone | Timezone | No |
| theme | Theme | Null | Yes |
| email_notifications | Boolean | No |
| phone_notification | Boolean | No |
| push_notifications | Boolean | No |
| two_factor_auth | Boolean | Null | Yes |
| high_contrast_mode | Boolean | Null | Yes |
| in_app_notifications | Boolean | Null | Yes |
| key_board_shortcut | Boolean | Null | Yes |
| notification_frequency | String | Null | Yes |
| notification_sound | String | Null | Yes |
| notification_vibrate | Boolean | Null | Yes |
| password_reset | Boolean | Null | Yes |
| User | UserCreateNestedManyWithoutUserSettingsInput | No |
| LoginRecord | LoginRecordCreateNestedOneWithoutUserSettingsInput | No |
| SecurityQuestion | SecurityQuestionCreateNestedOneWithoutUserSettingsInput | No |
| Version | VersionCreateNestedOneWithoutUserSettingsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| language | Language | No |
| time_format | TimeFormat | No |
| date_format | DateFormat | No |
| timezone | Timezone | No |
| theme | Theme | Null | Yes |
| email_notifications | Boolean | No |
| phone_notification | Boolean | No |
| push_notifications | Boolean | No |
| two_factor_auth | Boolean | Null | Yes |
| login_record_id | Int | No |
| high_contrast_mode | Boolean | Null | Yes |
| in_app_notifications | Boolean | Null | Yes |
| key_board_shortcut | Boolean | Null | Yes |
| notification_frequency | String | Null | Yes |
| notification_sound | String | Null | Yes |
| notification_vibrate | Boolean | Null | Yes |
| password_reset | Boolean | Null | Yes |
| version | String | No |
| security_question | Int | Null | Yes |
| User | UserUncheckedCreateNestedManyWithoutUserSettingsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| language | Language | No |
| time_format | TimeFormat | No |
| date_format | DateFormat | No |
| timezone | Timezone | No |
| theme | Theme | Null | Yes |
| email_notifications | Boolean | No |
| phone_notification | Boolean | No |
| push_notifications | Boolean | No |
| two_factor_auth | Boolean | Null | Yes |
| login_record_id | Int | No |
| high_contrast_mode | Boolean | Null | Yes |
| in_app_notifications | Boolean | Null | Yes |
| key_board_shortcut | Boolean | Null | Yes |
| notification_frequency | String | Null | Yes |
| notification_sound | String | Null | Yes |
| notification_vibrate | Boolean | Null | Yes |
| password_reset | Boolean | Null | Yes |
| version | String | No |
| security_question | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| slug | String | No |
| title | String | No |
| description | String | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| version | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| slug | String | StringFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| version | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| slug | String | StringFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| version | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | String | StringFieldRefInput | Null | Yes |
| in | String | ListStringFieldRefInput | Null | Yes |
| notIn | String | ListStringFieldRefInput | Null | Yes |
| lt | String | StringFieldRefInput | No |
| lte | String | StringFieldRefInput | No |
| gt | String | StringFieldRefInput | No |
| gte | String | StringFieldRefInput | No |
| contains | String | StringFieldRefInput | No |
| startsWith | String | StringFieldRefInput | No |
| endsWith | String | StringFieldRefInput | No |
| mode | QueryMode | No |
| not | String | NestedStringNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | BigInt | BigIntFieldRefInput | Null | Yes |
| in | BigInt[] | ListBigIntFieldRefInput | Null | Yes |
| notIn | BigInt[] | ListBigIntFieldRefInput | Null | Yes |
| lt | BigInt | BigIntFieldRefInput | No |
| lte | BigInt | BigIntFieldRefInput | No |
| gt | BigInt | BigIntFieldRefInput | No |
| gte | BigInt | BigIntFieldRefInput | No |
| not | BigInt | NestedBigIntNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | String | StringFieldRefInput | No |
| in | String | ListStringFieldRefInput | No |
| notIn | String | ListStringFieldRefInput | No |
| lt | String | StringFieldRefInput | No |
| lte | String | StringFieldRefInput | No |
| gt | String | StringFieldRefInput | No |
| gte | String | StringFieldRefInput | No |
| contains | String | StringFieldRefInput | No |
| startsWith | String | StringFieldRefInput | No |
| endsWith | String | StringFieldRefInput | No |
| mode | QueryMode | No |
| not | String | NestedStringFilter | No |
| Name | Type | Nullable |
|---|---|---|
| sort | SortOrder | No |
| nulls | NullsOrder | No |
| Name | Type | Nullable |
|---|---|---|
| userId | SortOrder | No |
| type | SortOrder | No |
| provider | SortOrder | No |
| providerAccountId | SortOrder | No |
| refresh_token | SortOrder | No |
| access_token | SortOrder | No |
| expires_at | SortOrder | No |
| scope | SortOrder | No |
| id_token | SortOrder | No |
| session_state | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| expires_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| userId | SortOrder | No |
| type | SortOrder | No |
| provider | SortOrder | No |
| providerAccountId | SortOrder | No |
| refresh_token | SortOrder | No |
| access_token | SortOrder | No |
| expires_at | SortOrder | No |
| scope | SortOrder | No |
| id_token | SortOrder | No |
| session_state | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| userId | SortOrder | No |
| type | SortOrder | No |
| provider | SortOrder | No |
| providerAccountId | SortOrder | No |
| refresh_token | SortOrder | No |
| access_token | SortOrder | No |
| expires_at | SortOrder | No |
| scope | SortOrder | No |
| id_token | SortOrder | No |
| session_state | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| expires_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | StringFieldRefInput | Null | Yes |
| in | String | ListStringFieldRefInput | Null | Yes |
| notIn | String | ListStringFieldRefInput | Null | Yes |
| lt | String | StringFieldRefInput | No |
| lte | String | StringFieldRefInput | No |
| gt | String | StringFieldRefInput | No |
| gte | String | StringFieldRefInput | No |
| contains | String | StringFieldRefInput | No |
| startsWith | String | StringFieldRefInput | No |
| endsWith | String | StringFieldRefInput | No |
| mode | QueryMode | No |
| not | String | NestedStringNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedStringNullableFilter | No |
| _max | NestedStringNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | BigInt | BigIntFieldRefInput | Null | Yes |
| in | BigInt[] | ListBigIntFieldRefInput | Null | Yes |
| notIn | BigInt[] | ListBigIntFieldRefInput | Null | Yes |
| lt | BigInt | BigIntFieldRefInput | No |
| lte | BigInt | BigIntFieldRefInput | No |
| gt | BigInt | BigIntFieldRefInput | No |
| gte | BigInt | BigIntFieldRefInput | No |
| not | BigInt | NestedBigIntNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _avg | NestedFloatNullableFilter | No |
| _sum | NestedBigIntNullableFilter | No |
| _min | NestedBigIntNullableFilter | No |
| _max | NestedBigIntNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | StringFieldRefInput | No |
| in | String | ListStringFieldRefInput | No |
| notIn | String | ListStringFieldRefInput | No |
| lt | String | StringFieldRefInput | No |
| lte | String | StringFieldRefInput | No |
| gt | String | StringFieldRefInput | No |
| gte | String | StringFieldRefInput | No |
| contains | String | StringFieldRefInput | No |
| startsWith | String | StringFieldRefInput | No |
| endsWith | String | StringFieldRefInput | No |
| mode | QueryMode | No |
| not | String | NestedStringWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedStringFilter | No |
| _max | NestedStringFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | IntFieldRefInput | No |
| in | Int | ListIntFieldRefInput | No |
| notIn | Int | ListIntFieldRefInput | No |
| lt | Int | IntFieldRefInput | No |
| lte | Int | IntFieldRefInput | No |
| gt | Int | IntFieldRefInput | No |
| gte | Int | IntFieldRefInput | No |
| not | Int | NestedIntFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | DateTimeFieldRefInput | No |
| in | DateTime | ListDateTimeFieldRefInput | No |
| notIn | DateTime | ListDateTimeFieldRefInput | No |
| lt | DateTime | DateTimeFieldRefInput | No |
| lte | DateTime | DateTimeFieldRefInput | No |
| gt | DateTime | DateTimeFieldRefInput | No |
| gte | DateTime | DateTimeFieldRefInput | No |
| not | DateTime | NestedDateTimeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | IntFieldRefInput | Null | Yes |
| in | Int | ListIntFieldRefInput | Null | Yes |
| notIn | Int | ListIntFieldRefInput | Null | Yes |
| lt | Int | IntFieldRefInput | No |
| lte | Int | IntFieldRefInput | No |
| gt | Int | IntFieldRefInput | No |
| gte | Int | IntFieldRefInput | No |
| not | Int | NestedIntNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | String | ListStringFieldRefInput | Null | Yes |
| has | String | StringFieldRefInput | Null | Yes |
| hasEvery | String | ListStringFieldRefInput | No |
| hasSome | String | ListStringFieldRefInput | No |
| isEmpty | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| is | ContactWhereInput | Null | Yes |
| isNot | ContactWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| is | OrganizationWhereInput | Null | Yes |
| isNot | OrganizationWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| is | PersonWhereInput | No |
| isNot | PersonWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| is | VersionWhereInput | No |
| isNot | VersionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| vehicle_number | SortOrder | No |
| ambulance_type | SortOrder | No |
| person | SortOrder | No |
| version | SortOrder | No |
| organization | SortOrder | No |
| equipment | SortOrder | No |
| contact | SortOrder | No |
| color | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| person | SortOrder | No |
| organization | SortOrder | No |
| contact | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| vehicle_number | SortOrder | No |
| ambulance_type | SortOrder | No |
| person | SortOrder | No |
| version | SortOrder | No |
| organization | SortOrder | No |
| contact | SortOrder | No |
| color | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| vehicle_number | SortOrder | No |
| ambulance_type | SortOrder | No |
| person | SortOrder | No |
| version | SortOrder | No |
| organization | SortOrder | No |
| contact | SortOrder | No |
| color | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| person | SortOrder | No |
| organization | SortOrder | No |
| contact | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | IntFieldRefInput | No |
| in | Int | ListIntFieldRefInput | No |
| notIn | Int | ListIntFieldRefInput | No |
| lt | Int | IntFieldRefInput | No |
| lte | Int | IntFieldRefInput | No |
| gt | Int | IntFieldRefInput | No |
| gte | Int | IntFieldRefInput | No |
| not | Int | NestedIntWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _avg | NestedFloatFilter | No |
| _sum | NestedIntFilter | No |
| _min | NestedIntFilter | No |
| _max | NestedIntFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | DateTimeFieldRefInput | No |
| in | DateTime | ListDateTimeFieldRefInput | No |
| notIn | DateTime | ListDateTimeFieldRefInput | No |
| lt | DateTime | DateTimeFieldRefInput | No |
| lte | DateTime | DateTimeFieldRefInput | No |
| gt | DateTime | DateTimeFieldRefInput | No |
| gte | DateTime | DateTimeFieldRefInput | No |
| not | DateTime | NestedDateTimeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedDateTimeFilter | No |
| _max | NestedDateTimeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | IntFieldRefInput | Null | Yes |
| in | Int | ListIntFieldRefInput | Null | Yes |
| notIn | Int | ListIntFieldRefInput | Null | Yes |
| lt | Int | IntFieldRefInput | No |
| lte | Int | IntFieldRefInput | No |
| gt | Int | IntFieldRefInput | No |
| gte | Int | IntFieldRefInput | No |
| not | Int | NestedIntNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _avg | NestedFloatNullableFilter | No |
| _sum | NestedIntNullableFilter | No |
| _min | NestedIntNullableFilter | No |
| _max | NestedIntNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| every | BloodDonationWhereInput | No |
| some | BloodDonationWhereInput | No |
| none | BloodDonationWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | ContactWhereInput | No |
| some | ContactWhereInput | No |
| none | ContactWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| established_at | SortOrder | No |
| version | SortOrder | No |
| founder | SortOrder | No |
| contact | SortOrder | No |
| title | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| founder | SortOrder | No |
| contact | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| established_at | SortOrder | No |
| version | SortOrder | No |
| founder | SortOrder | No |
| contact | SortOrder | No |
| title | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| established_at | SortOrder | No |
| version | SortOrder | No |
| founder | SortOrder | No |
| contact | SortOrder | No |
| title | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| founder | SortOrder | No |
| contact | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Json | JsonFieldRefInput | JsonNullValueFilter | No |
| path | String | No |
| string_contains | String | StringFieldRefInput | No |
| string_starts_with | String | StringFieldRefInput | No |
| string_ends_with | String | StringFieldRefInput | No |
| array_contains | Json | JsonFieldRefInput | Null | Yes |
| array_starts_with | Json | JsonFieldRefInput | Null | Yes |
| array_ends_with | Json | JsonFieldRefInput | Null | Yes |
| lt | Json | JsonFieldRefInput | No |
| lte | Json | JsonFieldRefInput | No |
| gt | Json | JsonFieldRefInput | No |
| gte | Json | JsonFieldRefInput | No |
| not | Json | JsonFieldRefInput | JsonNullValueFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | DateTimeFieldRefInput | Null | Yes |
| in | DateTime | ListDateTimeFieldRefInput | Null | Yes |
| notIn | DateTime | ListDateTimeFieldRefInput | Null | Yes |
| lt | DateTime | DateTimeFieldRefInput | No |
| lte | DateTime | DateTimeFieldRefInput | No |
| gt | DateTime | DateTimeFieldRefInput | No |
| gte | DateTime | DateTimeFieldRefInput | No |
| not | DateTime | NestedDateTimeNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| is | BloodCenterWhereInput | No |
| isNot | BloodCenterWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| donor_id | SortOrder | No |
| organization_id | SortOrder | No |
| amount | SortOrder | No |
| version | SortOrder | No |
| donated_at | SortOrder | No |
| referred_by | SortOrder | No |
| test_done | SortOrder | No |
| bags | SortOrder | No |
| media_done | SortOrder | No |
| media_used | SortOrder | No |
| incubation | SortOrder | No |
| note | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| cabin_no | SortOrder | No |
| reg_no | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| donor_id | SortOrder | No |
| organization_id | SortOrder | No |
| amount | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| donor_id | SortOrder | No |
| organization_id | SortOrder | No |
| amount | SortOrder | No |
| version | SortOrder | No |
| donated_at | SortOrder | No |
| referred_by | SortOrder | No |
| media_done | SortOrder | No |
| media_used | SortOrder | No |
| incubation | SortOrder | No |
| note | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| cabin_no | SortOrder | No |
| reg_no | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| donor_id | SortOrder | No |
| organization_id | SortOrder | No |
| amount | SortOrder | No |
| version | SortOrder | No |
| donated_at | SortOrder | No |
| referred_by | SortOrder | No |
| media_done | SortOrder | No |
| media_used | SortOrder | No |
| incubation | SortOrder | No |
| note | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| cabin_no | SortOrder | No |
| reg_no | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| donor_id | SortOrder | No |
| organization_id | SortOrder | No |
| amount | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Json | JsonFieldRefInput | JsonNullValueFilter | No |
| path | String | No |
| string_contains | String | StringFieldRefInput | No |
| string_starts_with | String | StringFieldRefInput | No |
| string_ends_with | String | StringFieldRefInput | No |
| array_contains | Json | JsonFieldRefInput | Null | Yes |
| array_starts_with | Json | JsonFieldRefInput | Null | Yes |
| array_ends_with | Json | JsonFieldRefInput | Null | Yes |
| lt | Json | JsonFieldRefInput | No |
| lte | Json | JsonFieldRefInput | No |
| gt | Json | JsonFieldRefInput | No |
| gte | Json | JsonFieldRefInput | No |
| not | Json | JsonFieldRefInput | JsonNullValueFilter | No |
| _count | NestedIntNullableFilter | No |
| _min | NestedJsonNullableFilter | No |
| _max | NestedJsonNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | DateTimeFieldRefInput | Null | Yes |
| in | DateTime | ListDateTimeFieldRefInput | Null | Yes |
| notIn | DateTime | ListDateTimeFieldRefInput | Null | Yes |
| lt | DateTime | DateTimeFieldRefInput | No |
| lte | DateTime | DateTimeFieldRefInput | No |
| gt | DateTime | DateTimeFieldRefInput | No |
| gte | DateTime | DateTimeFieldRefInput | No |
| not | DateTime | NestedDateTimeNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedDateTimeNullableFilter | No |
| _max | NestedDateTimeNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| is | ContactWhereInput | No |
| isNot | ContactWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | MemberWhereInput | No |
| some | MemberWhereInput | No |
| none | MemberWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | OrganizationWhereInput | No |
| some | OrganizationWhereInput | No |
| none | OrganizationWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| name | SortOrder | No |
| established_at | SortOrder | No |
| contact | SortOrder | No |
| version | SortOrder | No |
| chairman | SortOrder | No |
| founder | SortOrder | No |
| vice_chairman | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| contact | SortOrder | No |
| chairman | SortOrder | No |
| founder | SortOrder | No |
| vice_chairman | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| name | SortOrder | No |
| established_at | SortOrder | No |
| contact | SortOrder | No |
| version | SortOrder | No |
| chairman | SortOrder | No |
| founder | SortOrder | No |
| vice_chairman | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| name | SortOrder | No |
| established_at | SortOrder | No |
| contact | SortOrder | No |
| version | SortOrder | No |
| chairman | SortOrder | No |
| founder | SortOrder | No |
| vice_chairman | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| contact | SortOrder | No |
| chairman | SortOrder | No |
| founder | SortOrder | No |
| vice_chairman | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| every | AmbulanceWhereInput | No |
| some | AmbulanceWhereInput | No |
| none | AmbulanceWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | BloodCenterWhereInput | No |
| some | BloodCenterWhereInput | No |
| none | BloodCenterWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | ClubWhereInput | No |
| some | ClubWhereInput | No |
| none | ClubWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| is | BloodCenterWhereInput | Null | Yes |
| isNot | BloodCenterWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| is | ClubWhereInput | Null | Yes |
| isNot | ClubWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| is | CountryWhereInput | Null | Yes |
| isNot | CountryWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| is | DonationWhereInput | Null | Yes |
| isNot | DonationWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| is | HospitalWhereInput | Null | Yes |
| isNot | HospitalWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| is | PersonWhereInput | Null | Yes |
| isNot | PersonWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| every | HospitalWhereInput | No |
| some | HospitalWhereInput | No |
| none | HospitalWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | PersonWhereInput | No |
| some | PersonWhereInput | No |
| none | PersonWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| address_line | SortOrder | No |
| address_line_1 | SortOrder | No |
| state | SortOrder | No |
| city | SortOrder | No |
| zip | SortOrder | No |
| phone | SortOrder | No |
| phone_1 | SortOrder | No |
| fax | SortOrder | No |
| SortOrder | No | |
| email_1 | SortOrder | No |
| website | SortOrder | No |
| social_media | SortOrder | No |
| version | SortOrder | No |
| country | SortOrder | No |
| person | SortOrder | No |
| club | SortOrder | No |
| blood_center | SortOrder | No |
| donation | SortOrder | No |
| hospital | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| person | SortOrder | No |
| club | SortOrder | No |
| blood_center | SortOrder | No |
| donation | SortOrder | No |
| hospital | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| address_line | SortOrder | No |
| address_line_1 | SortOrder | No |
| state | SortOrder | No |
| city | SortOrder | No |
| zip | SortOrder | No |
| phone | SortOrder | No |
| phone_1 | SortOrder | No |
| fax | SortOrder | No |
| SortOrder | No | |
| email_1 | SortOrder | No |
| website | SortOrder | No |
| version | SortOrder | No |
| country | SortOrder | No |
| person | SortOrder | No |
| club | SortOrder | No |
| blood_center | SortOrder | No |
| donation | SortOrder | No |
| hospital | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| address_line | SortOrder | No |
| address_line_1 | SortOrder | No |
| state | SortOrder | No |
| city | SortOrder | No |
| zip | SortOrder | No |
| phone | SortOrder | No |
| phone_1 | SortOrder | No |
| fax | SortOrder | No |
| SortOrder | No | |
| email_1 | SortOrder | No |
| website | SortOrder | No |
| version | SortOrder | No |
| country | SortOrder | No |
| person | SortOrder | No |
| club | SortOrder | No |
| blood_center | SortOrder | No |
| donation | SortOrder | No |
| hospital | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| person | SortOrder | No |
| club | SortOrder | No |
| blood_center | SortOrder | No |
| donation | SortOrder | No |
| hospital | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| alpha_3 | String | No |
| alpha_2 | String | No |
| numeric | String | No |
| name | String | No |
| Name | Type | Nullable |
|---|---|---|
| alpha_3 | SortOrder | No |
| alpha_2 | SortOrder | No |
| numeric | SortOrder | No |
| name | SortOrder | No |
| version | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| alpha_3 | SortOrder | No |
| alpha_2 | SortOrder | No |
| numeric | SortOrder | No |
| name | SortOrder | No |
| version | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| alpha_3 | SortOrder | No |
| alpha_2 | SortOrder | No |
| numeric | SortOrder | No |
| name | SortOrder | No |
| version | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| every | LoginRecordWhereInput | No |
| some | LoginRecordWhereInput | No |
| none | LoginRecordWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| name | SortOrder | No |
| mac_address | SortOrder | No |
| model | SortOrder | No |
| os | SortOrder | No |
| os_version | SortOrder | No |
| device_id | SortOrder | No |
| brand | SortOrder | No |
| manufacturer | SortOrder | No |
| version | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| name | SortOrder | No |
| mac_address | SortOrder | No |
| model | SortOrder | No |
| os | SortOrder | No |
| os_version | SortOrder | No |
| device_id | SortOrder | No |
| brand | SortOrder | No |
| manufacturer | SortOrder | No |
| version | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| name | SortOrder | No |
| mac_address | SortOrder | No |
| model | SortOrder | No |
| os | SortOrder | No |
| os_version | SortOrder | No |
| device_id | SortOrder | No |
| brand | SortOrder | No |
| manufacturer | SortOrder | No |
| version | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| is | MemberWhereInput | No |
| isNot | MemberWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| is | OrganizationWhereInput | No |
| isNot | OrganizationWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| amount | SortOrder | No |
| donated_at | SortOrder | No |
| version | SortOrder | No |
| person | SortOrder | No |
| member | SortOrder | No |
| organization | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| amount | SortOrder | No |
| person | SortOrder | No |
| member | SortOrder | No |
| organization | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| amount | SortOrder | No |
| donated_at | SortOrder | No |
| version | SortOrder | No |
| person | SortOrder | No |
| member | SortOrder | No |
| organization | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| amount | SortOrder | No |
| donated_at | SortOrder | No |
| version | SortOrder | No |
| person | SortOrder | No |
| member | SortOrder | No |
| organization | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| amount | SortOrder | No |
| person | SortOrder | No |
| member | SortOrder | No |
| organization | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Boolean | BooleanFieldRefInput | Null | Yes |
| not | Boolean | NestedBoolNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | Float | FloatFieldRefInput | Null | Yes |
| in | Float | ListFloatFieldRefInput | Null | Yes |
| notIn | Float | ListFloatFieldRefInput | Null | Yes |
| lt | Float | FloatFieldRefInput | No |
| lte | Float | FloatFieldRefInput | No |
| gt | Float | FloatFieldRefInput | No |
| gte | Float | FloatFieldRefInput | No |
| not | Float | NestedFloatNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | FacilityType | EnumFacilityTypeFieldRefInput | Null | Yes |
| in | FacilityType[] | ListEnumFacilityTypeFieldRefInput | Null | Yes |
| notIn | FacilityType[] | ListEnumFacilityTypeFieldRefInput | Null | Yes |
| not | FacilityType | NestedEnumFacilityTypeNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| is | LocationWhereInput | Null | Yes |
| isNot | LocationWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| name | SortOrder | No |
| founded_at | SortOrder | No |
| accreditation | SortOrder | No |
| bed_count | SortOrder | No |
| emergency_room | SortOrder | No |
| services | SortOrder | No |
| specialties | SortOrder | No |
| rating | SortOrder | No |
| facility_type | SortOrder | No |
| ownership | SortOrder | No |
| insurance_accepted | SortOrder | No |
| operating_hours | SortOrder | No |
| infrastructure | SortOrder | No |
| security_controls | SortOrder | No |
| version | SortOrder | No |
| location | SortOrder | No |
| contact | SortOrder | No |
| founder | SortOrder | No |
| director | SortOrder | No |
| chairman | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| bed_count | SortOrder | No |
| rating | SortOrder | No |
| location | SortOrder | No |
| contact | SortOrder | No |
| founder | SortOrder | No |
| director | SortOrder | No |
| chairman | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| name | SortOrder | No |
| founded_at | SortOrder | No |
| accreditation | SortOrder | No |
| bed_count | SortOrder | No |
| emergency_room | SortOrder | No |
| rating | SortOrder | No |
| facility_type | SortOrder | No |
| ownership | SortOrder | No |
| insurance_accepted | SortOrder | No |
| operating_hours | SortOrder | No |
| infrastructure | SortOrder | No |
| security_controls | SortOrder | No |
| version | SortOrder | No |
| location | SortOrder | No |
| contact | SortOrder | No |
| founder | SortOrder | No |
| director | SortOrder | No |
| chairman | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| name | SortOrder | No |
| founded_at | SortOrder | No |
| accreditation | SortOrder | No |
| bed_count | SortOrder | No |
| emergency_room | SortOrder | No |
| rating | SortOrder | No |
| facility_type | SortOrder | No |
| ownership | SortOrder | No |
| insurance_accepted | SortOrder | No |
| operating_hours | SortOrder | No |
| infrastructure | SortOrder | No |
| security_controls | SortOrder | No |
| version | SortOrder | No |
| location | SortOrder | No |
| contact | SortOrder | No |
| founder | SortOrder | No |
| director | SortOrder | No |
| chairman | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| bed_count | SortOrder | No |
| rating | SortOrder | No |
| location | SortOrder | No |
| contact | SortOrder | No |
| founder | SortOrder | No |
| director | SortOrder | No |
| chairman | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Boolean | BooleanFieldRefInput | Null | Yes |
| not | Boolean | NestedBoolNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedBoolNullableFilter | No |
| _max | NestedBoolNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Float | FloatFieldRefInput | Null | Yes |
| in | Float | ListFloatFieldRefInput | Null | Yes |
| notIn | Float | ListFloatFieldRefInput | Null | Yes |
| lt | Float | FloatFieldRefInput | No |
| lte | Float | FloatFieldRefInput | No |
| gt | Float | FloatFieldRefInput | No |
| gte | Float | FloatFieldRefInput | No |
| not | Float | NestedFloatNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _avg | NestedFloatNullableFilter | No |
| _sum | NestedFloatNullableFilter | No |
| _min | NestedFloatNullableFilter | No |
| _max | NestedFloatNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | FacilityType | EnumFacilityTypeFieldRefInput | Null | Yes |
| in | FacilityType[] | ListEnumFacilityTypeFieldRefInput | Null | Yes |
| notIn | FacilityType[] | ListEnumFacilityTypeFieldRefInput | Null | Yes |
| not | FacilityType | NestedEnumFacilityTypeNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedEnumFacilityTypeNullableFilter | No |
| _max | NestedEnumFacilityTypeNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Float | FloatFieldRefInput | No |
| in | Float | ListFloatFieldRefInput | No |
| notIn | Float | ListFloatFieldRefInput | No |
| lt | Float | FloatFieldRefInput | No |
| lte | Float | FloatFieldRefInput | No |
| gt | Float | FloatFieldRefInput | No |
| gte | Float | FloatFieldRefInput | No |
| not | Float | NestedFloatFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| latitude | SortOrder | No |
| longitude | SortOrder | No |
| version | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| latitude | SortOrder | No |
| longitude | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| latitude | SortOrder | No |
| longitude | SortOrder | No |
| version | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| latitude | SortOrder | No |
| longitude | SortOrder | No |
| version | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| latitude | SortOrder | No |
| longitude | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Float | FloatFieldRefInput | No |
| in | Float | ListFloatFieldRefInput | No |
| notIn | Float | ListFloatFieldRefInput | No |
| lt | Float | FloatFieldRefInput | No |
| lte | Float | FloatFieldRefInput | No |
| gt | Float | FloatFieldRefInput | No |
| gte | Float | FloatFieldRefInput | No |
| not | Float | NestedFloatWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _avg | NestedFloatFilter | No |
| _sum | NestedFloatFilter | No |
| _min | NestedFloatFilter | No |
| _max | NestedFloatFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | AuthenticationMethod | EnumAuthenticationMethodFieldRefInput | Null | Yes |
| in | AuthenticationMethod[] | ListEnumAuthenticationMethodFieldRefInput | Null | Yes |
| notIn | AuthenticationMethod[] | ListEnumAuthenticationMethodFieldRefInput | Null | Yes |
| not | AuthenticationMethod | NestedEnumAuthenticationMethodNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| is | DeviceWhereInput | Null | Yes |
| isNot | DeviceWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| every | OrganizationSettingsWhereInput | No |
| some | OrganizationSettingsWhereInput | No |
| none | OrganizationSettingsWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | UserWhereInput | No |
| some | UserWhereInput | No |
| none | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | UserSettingsWhereInput | No |
| some | UserSettingsWhereInput | No |
| none | UserSettingsWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| user | SortOrder | No |
| ip_address | SortOrder | No |
| user_agent | SortOrder | No |
| login_status | SortOrder | No |
| session_id | SortOrder | No |
| location | SortOrder | No |
| authentication | SortOrder | No |
| security_tokens | SortOrder | No |
| logout_timestamp | SortOrder | No |
| version | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| devices | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| user | SortOrder | No |
| devices | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| user | SortOrder | No |
| ip_address | SortOrder | No |
| user_agent | SortOrder | No |
| login_status | SortOrder | No |
| session_id | SortOrder | No |
| location | SortOrder | No |
| authentication | SortOrder | No |
| security_tokens | SortOrder | No |
| logout_timestamp | SortOrder | No |
| version | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| devices | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| user | SortOrder | No |
| ip_address | SortOrder | No |
| user_agent | SortOrder | No |
| login_status | SortOrder | No |
| session_id | SortOrder | No |
| location | SortOrder | No |
| authentication | SortOrder | No |
| security_tokens | SortOrder | No |
| logout_timestamp | SortOrder | No |
| version | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| devices | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| user | SortOrder | No |
| devices | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | AuthenticationMethod | EnumAuthenticationMethodFieldRefInput | Null | Yes |
| in | AuthenticationMethod[] | ListEnumAuthenticationMethodFieldRefInput | Null | Yes |
| notIn | AuthenticationMethod[] | ListEnumAuthenticationMethodFieldRefInput | Null | Yes |
| not | AuthenticationMethod | NestedEnumAuthenticationMethodNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedEnumAuthenticationMethodNullableFilter | No |
| _max | NestedEnumAuthenticationMethodNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| every | DonationWhereInput | No |
| some | DonationWhereInput | No |
| none | DonationWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | RequestWhereInput | No |
| some | RequestWhereInput | No |
| none | RequestWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| version | SortOrder | No |
| allergies | SortOrder | No |
| complications | SortOrder | No |
| medications | SortOrder | No |
| blood_disorders | SortOrder | No |
| club_id | SortOrder | No |
| infectious_diseases | SortOrder | No |
| last_blood_donation | SortOrder | No |
| medical_conditions | SortOrder | No |
| person_id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| club_id | SortOrder | No |
| person_id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| version | SortOrder | No |
| allergies | SortOrder | No |
| complications | SortOrder | No |
| medications | SortOrder | No |
| blood_disorders | SortOrder | No |
| club_id | SortOrder | No |
| infectious_diseases | SortOrder | No |
| last_blood_donation | SortOrder | No |
| medical_conditions | SortOrder | No |
| person_id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| version | SortOrder | No |
| allergies | SortOrder | No |
| complications | SortOrder | No |
| medications | SortOrder | No |
| blood_disorders | SortOrder | No |
| club_id | SortOrder | No |
| infectious_diseases | SortOrder | No |
| last_blood_donation | SortOrder | No |
| medical_conditions | SortOrder | No |
| person_id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| club_id | SortOrder | No |
| person_id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | OrgType | EnumOrgTypeFieldRefInput | No |
| in | OrgType[] | ListEnumOrgTypeFieldRefInput | No |
| notIn | OrgType[] | ListEnumOrgTypeFieldRefInput | No |
| not | OrgType | NestedEnumOrgTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Json | JsonFieldRefInput | JsonNullValueFilter | No |
| path | String | No |
| string_contains | String | StringFieldRefInput | No |
| string_starts_with | String | StringFieldRefInput | No |
| string_ends_with | String | StringFieldRefInput | No |
| array_contains | Json | JsonFieldRefInput | Null | Yes |
| array_starts_with | Json | JsonFieldRefInput | Null | Yes |
| array_ends_with | Json | JsonFieldRefInput | Null | Yes |
| lt | Json | JsonFieldRefInput | No |
| lte | Json | JsonFieldRefInput | No |
| gt | Json | JsonFieldRefInput | No |
| gte | Json | JsonFieldRefInput | No |
| not | Json | JsonFieldRefInput | JsonNullValueFilter | No |
| Name | Type | Nullable |
|---|---|---|
| is | OrganizationSettingsWhereInput | No |
| isNot | OrganizationSettingsWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | SupportWhereInput | No |
| some | SupportWhereInput | No |
| none | SupportWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | SupportMessageWhereInput | No |
| some | SupportMessageWhereInput | No |
| none | SupportMessageWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | TeamWhereInput | No |
| some | TeamWhereInput | No |
| none | TeamWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| org_type | SortOrder | No |
| org_id | SortOrder | No |
| Volunteer | SortOrder | No |
| personId | SortOrder | No |
| organizationSettingsId | SortOrder | No |
| clubId | SortOrder | No |
| version | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| org_id | SortOrder | No |
| personId | SortOrder | No |
| organizationSettingsId | SortOrder | No |
| clubId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| org_type | SortOrder | No |
| org_id | SortOrder | No |
| personId | SortOrder | No |
| organizationSettingsId | SortOrder | No |
| clubId | SortOrder | No |
| version | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| org_type | SortOrder | No |
| org_id | SortOrder | No |
| personId | SortOrder | No |
| organizationSettingsId | SortOrder | No |
| clubId | SortOrder | No |
| version | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| org_id | SortOrder | No |
| personId | SortOrder | No |
| organizationSettingsId | SortOrder | No |
| clubId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | OrgType | EnumOrgTypeFieldRefInput | No |
| in | OrgType[] | ListEnumOrgTypeFieldRefInput | No |
| notIn | OrgType[] | ListEnumOrgTypeFieldRefInput | No |
| not | OrgType | NestedEnumOrgTypeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumOrgTypeFilter | No |
| _max | NestedEnumOrgTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Json | JsonFieldRefInput | JsonNullValueFilter | No |
| path | String | No |
| string_contains | String | StringFieldRefInput | No |
| string_starts_with | String | StringFieldRefInput | No |
| string_ends_with | String | StringFieldRefInput | No |
| array_contains | Json | JsonFieldRefInput | Null | Yes |
| array_starts_with | Json | JsonFieldRefInput | Null | Yes |
| array_ends_with | Json | JsonFieldRefInput | Null | Yes |
| lt | Json | JsonFieldRefInput | No |
| lte | Json | JsonFieldRefInput | No |
| gt | Json | JsonFieldRefInput | No |
| gte | Json | JsonFieldRefInput | No |
| not | Json | JsonFieldRefInput | JsonNullValueFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedJsonFilter | No |
| _max | NestedJsonFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Language | EnumLanguageFieldRefInput | No |
| in | Language[] | ListEnumLanguageFieldRefInput | No |
| notIn | Language[] | ListEnumLanguageFieldRefInput | No |
| not | Language | NestedEnumLanguageFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | TimeFormat | EnumTimeFormatFieldRefInput | No |
| in | TimeFormat[] | ListEnumTimeFormatFieldRefInput | No |
| notIn | TimeFormat[] | ListEnumTimeFormatFieldRefInput | No |
| not | TimeFormat | NestedEnumTimeFormatFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateFormat | EnumDateFormatFieldRefInput | No |
| in | DateFormat[] | ListEnumDateFormatFieldRefInput | No |
| notIn | DateFormat[] | ListEnumDateFormatFieldRefInput | No |
| not | DateFormat | NestedEnumDateFormatFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Timezone | EnumTimezoneFieldRefInput | No |
| in | Timezone[] | ListEnumTimezoneFieldRefInput | No |
| notIn | Timezone[] | ListEnumTimezoneFieldRefInput | No |
| not | Timezone | NestedEnumTimezoneFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Theme | EnumThemeFieldRefInput | Null | Yes |
| in | Theme[] | ListEnumThemeFieldRefInput | Null | Yes |
| notIn | Theme[] | ListEnumThemeFieldRefInput | Null | Yes |
| not | Theme | NestedEnumThemeNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | Boolean | BooleanFieldRefInput | No |
| not | Boolean | NestedBoolFilter | No |
| Name | Type | Nullable |
|---|---|---|
| is | LoginRecordWhereInput | Null | Yes |
| isNot | LoginRecordWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| language | SortOrder | No |
| time_format | SortOrder | No |
| date_format | SortOrder | No |
| timezone | SortOrder | No |
| theme | SortOrder | No |
| email_notifications | SortOrder | No |
| phone_notification | SortOrder | No |
| push_notifications | SortOrder | No |
| two_factor_auth | SortOrder | No |
| loginRecordId | SortOrder | No |
| accountDeactivation | SortOrder | No |
| avatar | SortOrder | No |
| clearBrowsingData | SortOrder | No |
| contactSupportLink | SortOrder | No |
| dataRetentionDays | SortOrder | No |
| dataSharing | SortOrder | No |
| helpCenterLink | SortOrder | No |
| high_contrast_mode | SortOrder | No |
| in_app_notifications | SortOrder | No |
| key_board_shortcut | SortOrder | No |
| notification_frequency | SortOrder | No |
| notification_sound | SortOrder | No |
| notification_vibrate | SortOrder | No |
| password_reset | SortOrder | No |
| security_answer | SortOrder | No |
| security_question | SortOrder | No |
| username | SortOrder | No |
| version | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| loginRecordId | SortOrder | No |
| dataRetentionDays | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| language | SortOrder | No |
| time_format | SortOrder | No |
| date_format | SortOrder | No |
| timezone | SortOrder | No |
| theme | SortOrder | No |
| email_notifications | SortOrder | No |
| phone_notification | SortOrder | No |
| push_notifications | SortOrder | No |
| two_factor_auth | SortOrder | No |
| loginRecordId | SortOrder | No |
| accountDeactivation | SortOrder | No |
| avatar | SortOrder | No |
| clearBrowsingData | SortOrder | No |
| contactSupportLink | SortOrder | No |
| dataRetentionDays | SortOrder | No |
| dataSharing | SortOrder | No |
| helpCenterLink | SortOrder | No |
| high_contrast_mode | SortOrder | No |
| in_app_notifications | SortOrder | No |
| key_board_shortcut | SortOrder | No |
| notification_frequency | SortOrder | No |
| notification_sound | SortOrder | No |
| notification_vibrate | SortOrder | No |
| password_reset | SortOrder | No |
| security_answer | SortOrder | No |
| security_question | SortOrder | No |
| username | SortOrder | No |
| version | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| language | SortOrder | No |
| time_format | SortOrder | No |
| date_format | SortOrder | No |
| timezone | SortOrder | No |
| theme | SortOrder | No |
| email_notifications | SortOrder | No |
| phone_notification | SortOrder | No |
| push_notifications | SortOrder | No |
| two_factor_auth | SortOrder | No |
| loginRecordId | SortOrder | No |
| accountDeactivation | SortOrder | No |
| avatar | SortOrder | No |
| clearBrowsingData | SortOrder | No |
| contactSupportLink | SortOrder | No |
| dataRetentionDays | SortOrder | No |
| dataSharing | SortOrder | No |
| helpCenterLink | SortOrder | No |
| high_contrast_mode | SortOrder | No |
| in_app_notifications | SortOrder | No |
| key_board_shortcut | SortOrder | No |
| notification_frequency | SortOrder | No |
| notification_sound | SortOrder | No |
| notification_vibrate | SortOrder | No |
| password_reset | SortOrder | No |
| security_answer | SortOrder | No |
| security_question | SortOrder | No |
| username | SortOrder | No |
| version | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| loginRecordId | SortOrder | No |
| dataRetentionDays | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Language | EnumLanguageFieldRefInput | No |
| in | Language[] | ListEnumLanguageFieldRefInput | No |
| notIn | Language[] | ListEnumLanguageFieldRefInput | No |
| not | Language | NestedEnumLanguageWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumLanguageFilter | No |
| _max | NestedEnumLanguageFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | TimeFormat | EnumTimeFormatFieldRefInput | No |
| in | TimeFormat[] | ListEnumTimeFormatFieldRefInput | No |
| notIn | TimeFormat[] | ListEnumTimeFormatFieldRefInput | No |
| not | TimeFormat | NestedEnumTimeFormatWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumTimeFormatFilter | No |
| _max | NestedEnumTimeFormatFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateFormat | EnumDateFormatFieldRefInput | No |
| in | DateFormat[] | ListEnumDateFormatFieldRefInput | No |
| notIn | DateFormat[] | ListEnumDateFormatFieldRefInput | No |
| not | DateFormat | NestedEnumDateFormatWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumDateFormatFilter | No |
| _max | NestedEnumDateFormatFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Timezone | EnumTimezoneFieldRefInput | No |
| in | Timezone[] | ListEnumTimezoneFieldRefInput | No |
| notIn | Timezone[] | ListEnumTimezoneFieldRefInput | No |
| not | Timezone | NestedEnumTimezoneWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumTimezoneFilter | No |
| _max | NestedEnumTimezoneFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Theme | EnumThemeFieldRefInput | Null | Yes |
| in | Theme[] | ListEnumThemeFieldRefInput | Null | Yes |
| notIn | Theme[] | ListEnumThemeFieldRefInput | Null | Yes |
| not | Theme | NestedEnumThemeNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedEnumThemeNullableFilter | No |
| _max | NestedEnumThemeNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Boolean | BooleanFieldRefInput | No |
| not | Boolean | NestedBoolWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedBoolFilter | No |
| _max | NestedBoolFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Gender | EnumGenderFieldRefInput | Null | Yes |
| in | Gender[] | ListEnumGenderFieldRefInput | Null | Yes |
| notIn | Gender[] | ListEnumGenderFieldRefInput | Null | Yes |
| not | Gender | NestedEnumGenderNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| is | TeamWhereInput | Null | Yes |
| isNot | TeamWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| first_name | SortOrder | No |
| last_name | SortOrder | No |
| father_name | SortOrder | No |
| mother_name | SortOrder | No |
| profession | SortOrder | No |
| dob | SortOrder | No |
| gender | SortOrder | No |
| version | SortOrder | No |
| avatar | SortOrder | No |
| contact_id | SortOrder | No |
| teamId | SortOrder | No |
| bid | SortOrder | No |
| driving | SortOrder | No |
| nid | SortOrder | No |
| passport | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| contact_id | SortOrder | No |
| teamId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| first_name | SortOrder | No |
| last_name | SortOrder | No |
| father_name | SortOrder | No |
| mother_name | SortOrder | No |
| profession | SortOrder | No |
| dob | SortOrder | No |
| gender | SortOrder | No |
| version | SortOrder | No |
| avatar | SortOrder | No |
| contact_id | SortOrder | No |
| teamId | SortOrder | No |
| bid | SortOrder | No |
| driving | SortOrder | No |
| nid | SortOrder | No |
| passport | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| first_name | SortOrder | No |
| last_name | SortOrder | No |
| father_name | SortOrder | No |
| mother_name | SortOrder | No |
| profession | SortOrder | No |
| dob | SortOrder | No |
| gender | SortOrder | No |
| version | SortOrder | No |
| avatar | SortOrder | No |
| contact_id | SortOrder | No |
| teamId | SortOrder | No |
| bid | SortOrder | No |
| driving | SortOrder | No |
| nid | SortOrder | No |
| passport | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| contact_id | SortOrder | No |
| teamId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Gender | EnumGenderFieldRefInput | Null | Yes |
| in | Gender[] | ListEnumGenderFieldRefInput | Null | Yes |
| notIn | Gender[] | ListEnumGenderFieldRefInput | Null | Yes |
| not | Gender | NestedEnumGenderNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedEnumGenderNullableFilter | No |
| _max | NestedEnumGenderNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | BloodGroup | EnumBloodGroupFieldRefInput | No |
| in | BloodGroup[] | ListEnumBloodGroupFieldRefInput | No |
| notIn | BloodGroup[] | ListEnumBloodGroupFieldRefInput | No |
| not | BloodGroup | NestedEnumBloodGroupFilter | No |
| Name | Type | Nullable |
|---|---|---|
| is | MemberWhereInput | Null | Yes |
| isNot | MemberWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| health_issue | SortOrder | No |
| blood_group | SortOrder | No |
| quantity | SortOrder | No |
| donation_type | SortOrder | No |
| datetime | SortOrder | No |
| hospital_name | SortOrder | No |
| hospital_address | SortOrder | No |
| hospital_phone | SortOrder | No |
| hospital_email | SortOrder | No |
| version | SortOrder | No |
| memberId | SortOrder | No |
| personId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| quantity | SortOrder | No |
| memberId | SortOrder | No |
| personId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| health_issue | SortOrder | No |
| blood_group | SortOrder | No |
| quantity | SortOrder | No |
| donation_type | SortOrder | No |
| datetime | SortOrder | No |
| hospital_name | SortOrder | No |
| hospital_address | SortOrder | No |
| hospital_phone | SortOrder | No |
| hospital_email | SortOrder | No |
| version | SortOrder | No |
| memberId | SortOrder | No |
| personId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| health_issue | SortOrder | No |
| blood_group | SortOrder | No |
| quantity | SortOrder | No |
| donation_type | SortOrder | No |
| datetime | SortOrder | No |
| hospital_name | SortOrder | No |
| hospital_address | SortOrder | No |
| hospital_phone | SortOrder | No |
| hospital_email | SortOrder | No |
| version | SortOrder | No |
| memberId | SortOrder | No |
| personId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| quantity | SortOrder | No |
| memberId | SortOrder | No |
| personId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | BloodGroup | EnumBloodGroupFieldRefInput | No |
| in | BloodGroup[] | ListEnumBloodGroupFieldRefInput | No |
| notIn | BloodGroup[] | ListEnumBloodGroupFieldRefInput | No |
| not | BloodGroup | NestedEnumBloodGroupWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumBloodGroupFilter | No |
| _max | NestedEnumBloodGroupFilter | No |
| Name | Type | Nullable |
|---|---|---|
| is | UserWhereInput | No |
| isNot | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| question | SortOrder | No |
| answer | SortOrder | No |
| userId | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| version | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| question | SortOrder | No |
| answer | SortOrder | No |
| userId | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| version | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| question | SortOrder | No |
| answer | SortOrder | No |
| userId | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| version | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| SortOrder | No | |
| SortOrder | No | |
| SortOrder | No | |
| userId | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| version | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| SortOrder | No | |
| SortOrder | No | |
| SortOrder | No | |
| userId | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| version | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| SortOrder | No | |
| SortOrder | No | |
| SortOrder | No | |
| userId | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| version | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| version | SortOrder | No |
| organization | SortOrder | No |
| messages | SortOrder | No |
| status | SortOrder | No |
| priority | SortOrder | No |
| subject | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| organization | SortOrder | No |
| priority | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| version | SortOrder | No |
| organization | SortOrder | No |
| messages | SortOrder | No |
| status | SortOrder | No |
| priority | SortOrder | No |
| subject | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| version | SortOrder | No |
| organization | SortOrder | No |
| messages | SortOrder | No |
| status | SortOrder | No |
| priority | SortOrder | No |
| subject | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| organization | SortOrder | No |
| priority | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| is | SupportWhereInput | No |
| isNot | SupportWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| organization | SortOrder | No |
| support | SortOrder | No |
| message | SortOrder | No |
| author | SortOrder | No |
| version | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| organization | SortOrder | No |
| support | SortOrder | No |
| author | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| organization | SortOrder | No |
| support | SortOrder | No |
| message | SortOrder | No |
| author | SortOrder | No |
| version | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| organization | SortOrder | No |
| support | SortOrder | No |
| message | SortOrder | No |
| author | SortOrder | No |
| version | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| organization | SortOrder | No |
| support | SortOrder | No |
| author | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| started_at | SortOrder | No |
| ended_at | SortOrder | No |
| organization | SortOrder | No |
| version | SortOrder | No |
| members | SortOrder | No |
| status | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| organization | SortOrder | No |
| members | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| started_at | SortOrder | No |
| ended_at | SortOrder | No |
| organization | SortOrder | No |
| version | SortOrder | No |
| members | SortOrder | No |
| status | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| started_at | SortOrder | No |
| ended_at | SortOrder | No |
| organization | SortOrder | No |
| version | SortOrder | No |
| members | SortOrder | No |
| status | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| organization | SortOrder | No |
| members | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| is_enabled | SortOrder | No |
| secret_key | SortOrder | No |
| user_id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| version | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| is_enabled | SortOrder | No |
| secret_key | SortOrder | No |
| user_id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| version | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| is_enabled | SortOrder | No |
| secret_key | SortOrder | No |
| user_id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| version | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | AccountStatus | EnumAccountStatusFieldRefInput | No |
| in | AccountStatus[] | ListEnumAccountStatusFieldRefInput | No |
| notIn | AccountStatus[] | ListEnumAccountStatusFieldRefInput | No |
| not | AccountStatus | NestedEnumAccountStatusFilter | No |
| Name | Type | Nullable |
|---|---|---|
| every | SecurityQuestionWhereInput | No |
| some | SecurityQuestionWhereInput | No |
| none | SecurityQuestionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| is | LoginRecordWhereInput | No |
| isNot | LoginRecordWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| is | SocialMediaLinksWhereInput | No |
| isNot | SocialMediaLinksWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| is | TwoFactorAuthWhereInput | No |
| isNot | TwoFactorAuthWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| is | UserSettingsWhereInput | No |
| isNot | UserSettingsWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | UserRoleWhereInput | No |
| some | UserRoleWhereInput | No |
| none | UserRoleWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| username | SortOrder | No |
| SortOrder | No | |
| password | SortOrder | No |
| status | SortOrder | No |
| ip | SortOrder | No |
| two_factor_auth | SortOrder | No |
| social_login | SortOrder | No |
| logins | SortOrder | No |
| person | SortOrder | No |
| settings | SortOrder | No |
| version | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| two_factor_auth | SortOrder | No |
| social_login | SortOrder | No |
| logins | SortOrder | No |
| person | SortOrder | No |
| settings | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| username | SortOrder | No |
| SortOrder | No | |
| password | SortOrder | No |
| status | SortOrder | No |
| ip | SortOrder | No |
| two_factor_auth | SortOrder | No |
| social_login | SortOrder | No |
| logins | SortOrder | No |
| person | SortOrder | No |
| settings | SortOrder | No |
| version | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| username | SortOrder | No |
| SortOrder | No | |
| password | SortOrder | No |
| status | SortOrder | No |
| ip | SortOrder | No |
| two_factor_auth | SortOrder | No |
| social_login | SortOrder | No |
| logins | SortOrder | No |
| person | SortOrder | No |
| settings | SortOrder | No |
| version | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| two_factor_auth | SortOrder | No |
| social_login | SortOrder | No |
| logins | SortOrder | No |
| person | SortOrder | No |
| settings | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | AccountStatus | EnumAccountStatusFieldRefInput | No |
| in | AccountStatus[] | ListEnumAccountStatusFieldRefInput | No |
| notIn | AccountStatus[] | ListEnumAccountStatusFieldRefInput | No |
| not | AccountStatus | NestedEnumAccountStatusWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumAccountStatusFilter | No |
| _max | NestedEnumAccountStatusFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| user_id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| version | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| user_id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| version | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| user_id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| version | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| is | SecurityQuestionWhereInput | Null | Yes |
| isNot | SecurityQuestionWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| language | SortOrder | No |
| time_format | SortOrder | No |
| date_format | SortOrder | No |
| timezone | SortOrder | No |
| theme | SortOrder | No |
| email_notifications | SortOrder | No |
| phone_notification | SortOrder | No |
| push_notifications | SortOrder | No |
| two_factor_auth | SortOrder | No |
| login_record_id | SortOrder | No |
| high_contrast_mode | SortOrder | No |
| in_app_notifications | SortOrder | No |
| key_board_shortcut | SortOrder | No |
| notification_frequency | SortOrder | No |
| notification_sound | SortOrder | No |
| notification_vibrate | SortOrder | No |
| password_reset | SortOrder | No |
| version | SortOrder | No |
| security_question | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| login_record_id | SortOrder | No |
| security_question | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| language | SortOrder | No |
| time_format | SortOrder | No |
| date_format | SortOrder | No |
| timezone | SortOrder | No |
| theme | SortOrder | No |
| email_notifications | SortOrder | No |
| phone_notification | SortOrder | No |
| push_notifications | SortOrder | No |
| two_factor_auth | SortOrder | No |
| login_record_id | SortOrder | No |
| high_contrast_mode | SortOrder | No |
| in_app_notifications | SortOrder | No |
| key_board_shortcut | SortOrder | No |
| notification_frequency | SortOrder | No |
| notification_sound | SortOrder | No |
| notification_vibrate | SortOrder | No |
| password_reset | SortOrder | No |
| version | SortOrder | No |
| security_question | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| language | SortOrder | No |
| time_format | SortOrder | No |
| date_format | SortOrder | No |
| timezone | SortOrder | No |
| theme | SortOrder | No |
| email_notifications | SortOrder | No |
| phone_notification | SortOrder | No |
| push_notifications | SortOrder | No |
| two_factor_auth | SortOrder | No |
| login_record_id | SortOrder | No |
| high_contrast_mode | SortOrder | No |
| in_app_notifications | SortOrder | No |
| key_board_shortcut | SortOrder | No |
| notification_frequency | SortOrder | No |
| notification_sound | SortOrder | No |
| notification_vibrate | SortOrder | No |
| password_reset | SortOrder | No |
| version | SortOrder | No |
| security_question | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| login_record_id | SortOrder | No |
| security_question | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| every | CountryWhereInput | No |
| some | CountryWhereInput | No |
| none | CountryWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | DeviceWhereInput | No |
| some | DeviceWhereInput | No |
| none | DeviceWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | LocationWhereInput | No |
| some | LocationWhereInput | No |
| none | LocationWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | SocialMediaLinksWhereInput | No |
| some | SocialMediaLinksWhereInput | No |
| none | SocialMediaLinksWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | TwoFactorAuthWhereInput | No |
| some | TwoFactorAuthWhereInput | No |
| none | TwoFactorAuthWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| slug | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| slug | SortOrder | No |
| title | SortOrder | No |
| description | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| version | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| slug | SortOrder | No |
| title | SortOrder | No |
| description | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| version | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| slug | SortOrder | No |
| title | SortOrder | No |
| description | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| version | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| set | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| set | BigInt | Null | Yes |
| increment | BigInt | No |
| decrement | BigInt | No |
| multiply | BigInt | No |
| divide | BigInt | No |
| Name | Type | Nullable |
|---|---|---|
| set | String | No |
| Name | Type | Nullable |
|---|---|---|
| set | String | No |
| Name | Type | Nullable |
|---|---|---|
| create | ContactCreateWithoutAmbulanceInput | ContactUncheckedCreateWithoutAmbulanceInput | No |
| connectOrCreate | ContactCreateOrConnectWithoutAmbulanceInput | No |
| connect | ContactWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrganizationCreateWithoutAmbulanceInput | OrganizationUncheckedCreateWithoutAmbulanceInput | No |
| connectOrCreate | OrganizationCreateOrConnectWithoutAmbulanceInput | No |
| connect | OrganizationWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PersonCreateWithoutAmbulanceInput | PersonUncheckedCreateWithoutAmbulanceInput | No |
| connectOrCreate | PersonCreateOrConnectWithoutAmbulanceInput | No |
| connect | PersonWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | VersionCreateWithoutAmbulanceInput | VersionUncheckedCreateWithoutAmbulanceInput | No |
| connectOrCreate | VersionCreateOrConnectWithoutAmbulanceInput | No |
| connect | VersionWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| set | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| set | String | No |
| push | String | String | No |
| Name | Type | Nullable |
|---|---|---|
| create | ContactCreateWithoutAmbulanceInput | ContactUncheckedCreateWithoutAmbulanceInput | No |
| connectOrCreate | ContactCreateOrConnectWithoutAmbulanceInput | No |
| upsert | ContactUpsertWithoutAmbulanceInput | No |
| disconnect | Boolean | ContactWhereInput | No |
| delete | Boolean | ContactWhereInput | No |
| connect | ContactWhereUniqueInput | No |
| update | ContactUpdateToOneWithWhereWithoutAmbulanceInput | ContactUpdateWithoutAmbulanceInput | ContactUncheckedUpdateWithoutAmbulanceInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrganizationCreateWithoutAmbulanceInput | OrganizationUncheckedCreateWithoutAmbulanceInput | No |
| connectOrCreate | OrganizationCreateOrConnectWithoutAmbulanceInput | No |
| upsert | OrganizationUpsertWithoutAmbulanceInput | No |
| disconnect | Boolean | OrganizationWhereInput | No |
| delete | Boolean | OrganizationWhereInput | No |
| connect | OrganizationWhereUniqueInput | No |
| update | OrganizationUpdateToOneWithWhereWithoutAmbulanceInput | OrganizationUpdateWithoutAmbulanceInput | OrganizationUncheckedUpdateWithoutAmbulanceInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PersonCreateWithoutAmbulanceInput | PersonUncheckedCreateWithoutAmbulanceInput | No |
| connectOrCreate | PersonCreateOrConnectWithoutAmbulanceInput | No |
| upsert | PersonUpsertWithoutAmbulanceInput | No |
| connect | PersonWhereUniqueInput | No |
| update | PersonUpdateToOneWithWhereWithoutAmbulanceInput | PersonUpdateWithoutAmbulanceInput | PersonUncheckedUpdateWithoutAmbulanceInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | VersionCreateWithoutAmbulanceInput | VersionUncheckedCreateWithoutAmbulanceInput | No |
| connectOrCreate | VersionCreateOrConnectWithoutAmbulanceInput | No |
| upsert | VersionUpsertWithoutAmbulanceInput | No |
| connect | VersionWhereUniqueInput | No |
| update | VersionUpdateToOneWithWhereWithoutAmbulanceInput | VersionUpdateWithoutAmbulanceInput | VersionUncheckedUpdateWithoutAmbulanceInput | No |
| Name | Type | Nullable |
|---|---|---|
| set | Int | No |
| increment | Int | No |
| decrement | Int | No |
| multiply | Int | No |
| divide | Int | No |
| Name | Type | Nullable |
|---|---|---|
| set | Int | Null | Yes |
| increment | Int | No |
| decrement | Int | No |
| multiply | Int | No |
| divide | Int | No |
| Name | Type | Nullable |
|---|---|---|
| create | ContactCreateWithoutBloodCenter_BloodCenter_contactToContactInput | ContactUncheckedCreateWithoutBloodCenter_BloodCenter_contactToContactInput | No |
| connectOrCreate | ContactCreateOrConnectWithoutBloodCenter_BloodCenter_contactToContactInput | No |
| connect | ContactWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PersonCreateWithoutBloodCenterInput | PersonUncheckedCreateWithoutBloodCenterInput | No |
| connectOrCreate | PersonCreateOrConnectWithoutBloodCenterInput | No |
| connect | PersonWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | VersionCreateWithoutBloodCenterInput | VersionUncheckedCreateWithoutBloodCenterInput | No |
| connectOrCreate | VersionCreateOrConnectWithoutBloodCenterInput | No |
| connect | VersionWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PersonCreateWithoutBloodCenterInput | PersonUncheckedCreateWithoutBloodCenterInput | No |
| connectOrCreate | PersonCreateOrConnectWithoutBloodCenterInput | No |
| upsert | PersonUpsertWithoutBloodCenterInput | No |
| connect | PersonWhereUniqueInput | No |
| update | PersonUpdateToOneWithWhereWithoutBloodCenterInput | PersonUpdateWithoutBloodCenterInput | PersonUncheckedUpdateWithoutBloodCenterInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | VersionCreateWithoutBloodCenterInput | VersionUncheckedCreateWithoutBloodCenterInput | No |
| connectOrCreate | VersionCreateOrConnectWithoutBloodCenterInput | No |
| upsert | VersionUpsertWithoutBloodCenterInput | No |
| connect | VersionWhereUniqueInput | No |
| update | VersionUpdateToOneWithWhereWithoutBloodCenterInput | VersionUpdateWithoutBloodCenterInput | VersionUncheckedUpdateWithoutBloodCenterInput | No |
| Name | Type | Nullable |
|---|---|---|
| set | String | No |
| Name | Type | Nullable |
|---|---|---|
| create | BloodCenterCreateWithoutBloodDonationInput | BloodCenterUncheckedCreateWithoutBloodDonationInput | No |
| connectOrCreate | BloodCenterCreateOrConnectWithoutBloodDonationInput | No |
| connect | BloodCenterWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PersonCreateWithoutBloodDonationInput | PersonUncheckedCreateWithoutBloodDonationInput | No |
| connectOrCreate | PersonCreateOrConnectWithoutBloodDonationInput | No |
| connect | PersonWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | VersionCreateWithoutBloodDonationInput | VersionUncheckedCreateWithoutBloodDonationInput | No |
| connectOrCreate | VersionCreateOrConnectWithoutBloodDonationInput | No |
| connect | VersionWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| set | String | No |
| push | String | String | No |
| Name | Type | Nullable |
|---|---|---|
| set | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| create | BloodCenterCreateWithoutBloodDonationInput | BloodCenterUncheckedCreateWithoutBloodDonationInput | No |
| connectOrCreate | BloodCenterCreateOrConnectWithoutBloodDonationInput | No |
| upsert | BloodCenterUpsertWithoutBloodDonationInput | No |
| connect | BloodCenterWhereUniqueInput | No |
| update | BloodCenterUpdateToOneWithWhereWithoutBloodDonationInput | BloodCenterUpdateWithoutBloodDonationInput | BloodCenterUncheckedUpdateWithoutBloodDonationInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PersonCreateWithoutBloodDonationInput | PersonUncheckedCreateWithoutBloodDonationInput | No |
| connectOrCreate | PersonCreateOrConnectWithoutBloodDonationInput | No |
| upsert | PersonUpsertWithoutBloodDonationInput | No |
| connect | PersonWhereUniqueInput | No |
| update | PersonUpdateToOneWithWhereWithoutBloodDonationInput | PersonUpdateWithoutBloodDonationInput | PersonUncheckedUpdateWithoutBloodDonationInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | VersionCreateWithoutBloodDonationInput | VersionUncheckedCreateWithoutBloodDonationInput | No |
| connectOrCreate | VersionCreateOrConnectWithoutBloodDonationInput | No |
| upsert | VersionUpsertWithoutBloodDonationInput | No |
| connect | VersionWhereUniqueInput | No |
| update | VersionUpdateToOneWithWhereWithoutBloodDonationInput | VersionUpdateWithoutBloodDonationInput | VersionUncheckedUpdateWithoutBloodDonationInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PersonCreateWithoutClub_Club_chairmanToPersonInput | PersonUncheckedCreateWithoutClub_Club_chairmanToPersonInput | No |
| connectOrCreate | PersonCreateOrConnectWithoutClub_Club_chairmanToPersonInput | No |
| connect | PersonWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ContactCreateWithoutClub_Club_contactToContactInput | ContactUncheckedCreateWithoutClub_Club_contactToContactInput | No |
| connectOrCreate | ContactCreateOrConnectWithoutClub_Club_contactToContactInput | No |
| connect | ContactWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PersonCreateWithoutClub_Club_founderToPersonInput | PersonUncheckedCreateWithoutClub_Club_founderToPersonInput | No |
| connectOrCreate | PersonCreateOrConnectWithoutClub_Club_founderToPersonInput | No |
| connect | PersonWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | VersionCreateWithoutClubInput | VersionUncheckedCreateWithoutClubInput | No |
| connectOrCreate | VersionCreateOrConnectWithoutClubInput | No |
| connect | VersionWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PersonCreateWithoutClub_Club_vice_chairmanToPersonInput | PersonUncheckedCreateWithoutClub_Club_vice_chairmanToPersonInput | No |
| connectOrCreate | PersonCreateOrConnectWithoutClub_Club_vice_chairmanToPersonInput | No |
| connect | PersonWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | MemberCreateWithoutClubInput | MemberCreateWithoutClubInput[] | MemberUncheckedCreateWithoutClubInput | MemberUncheckedCreateWithoutClubInput[] | No |
| connectOrCreate | MemberCreateOrConnectWithoutClubInput | MemberCreateOrConnectWithoutClubInput[] | No |
| createMany | MemberCreateManyClubInputEnvelope | No |
| connect | MemberWhereUniqueInput | MemberWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrganizationCreateWithoutClubInput | OrganizationCreateWithoutClubInput[] | OrganizationUncheckedCreateWithoutClubInput | OrganizationUncheckedCreateWithoutClubInput[] | No |
| connectOrCreate | OrganizationCreateOrConnectWithoutClubInput | OrganizationCreateOrConnectWithoutClubInput[] | No |
| createMany | OrganizationCreateManyClubInputEnvelope | No |
| connect | OrganizationWhereUniqueInput | OrganizationWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | MemberCreateWithoutClubInput | MemberCreateWithoutClubInput[] | MemberUncheckedCreateWithoutClubInput | MemberUncheckedCreateWithoutClubInput[] | No |
| connectOrCreate | MemberCreateOrConnectWithoutClubInput | MemberCreateOrConnectWithoutClubInput[] | No |
| createMany | MemberCreateManyClubInputEnvelope | No |
| connect | MemberWhereUniqueInput | MemberWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrganizationCreateWithoutClubInput | OrganizationCreateWithoutClubInput[] | OrganizationUncheckedCreateWithoutClubInput | OrganizationUncheckedCreateWithoutClubInput[] | No |
| connectOrCreate | OrganizationCreateOrConnectWithoutClubInput | OrganizationCreateOrConnectWithoutClubInput[] | No |
| createMany | OrganizationCreateManyClubInputEnvelope | No |
| connect | OrganizationWhereUniqueInput | OrganizationWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | VersionCreateWithoutClubInput | VersionUncheckedCreateWithoutClubInput | No |
| connectOrCreate | VersionCreateOrConnectWithoutClubInput | No |
| upsert | VersionUpsertWithoutClubInput | No |
| connect | VersionWhereUniqueInput | No |
| update | VersionUpdateToOneWithWhereWithoutClubInput | VersionUpdateWithoutClubInput | VersionUncheckedUpdateWithoutClubInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | MemberCreateWithoutClubInput | MemberCreateWithoutClubInput[] | MemberUncheckedCreateWithoutClubInput | MemberUncheckedCreateWithoutClubInput[] | No |
| connectOrCreate | MemberCreateOrConnectWithoutClubInput | MemberCreateOrConnectWithoutClubInput[] | No |
| upsert | MemberUpsertWithWhereUniqueWithoutClubInput | MemberUpsertWithWhereUniqueWithoutClubInput[] | No |
| createMany | MemberCreateManyClubInputEnvelope | No |
| set | MemberWhereUniqueInput | MemberWhereUniqueInput[] | No |
| disconnect | MemberWhereUniqueInput | MemberWhereUniqueInput[] | No |
| delete | MemberWhereUniqueInput | MemberWhereUniqueInput[] | No |
| connect | MemberWhereUniqueInput | MemberWhereUniqueInput[] | No |
| update | MemberUpdateWithWhereUniqueWithoutClubInput | MemberUpdateWithWhereUniqueWithoutClubInput[] | No |
| updateMany | MemberUpdateManyWithWhereWithoutClubInput | MemberUpdateManyWithWhereWithoutClubInput[] | No |
| deleteMany | MemberScalarWhereInput | MemberScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | MemberCreateWithoutClubInput | MemberCreateWithoutClubInput[] | MemberUncheckedCreateWithoutClubInput | MemberUncheckedCreateWithoutClubInput[] | No |
| connectOrCreate | MemberCreateOrConnectWithoutClubInput | MemberCreateOrConnectWithoutClubInput[] | No |
| upsert | MemberUpsertWithWhereUniqueWithoutClubInput | MemberUpsertWithWhereUniqueWithoutClubInput[] | No |
| createMany | MemberCreateManyClubInputEnvelope | No |
| set | MemberWhereUniqueInput | MemberWhereUniqueInput[] | No |
| disconnect | MemberWhereUniqueInput | MemberWhereUniqueInput[] | No |
| delete | MemberWhereUniqueInput | MemberWhereUniqueInput[] | No |
| connect | MemberWhereUniqueInput | MemberWhereUniqueInput[] | No |
| update | MemberUpdateWithWhereUniqueWithoutClubInput | MemberUpdateWithWhereUniqueWithoutClubInput[] | No |
| updateMany | MemberUpdateManyWithWhereWithoutClubInput | MemberUpdateManyWithWhereWithoutClubInput[] | No |
| deleteMany | MemberScalarWhereInput | MemberScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | AmbulanceCreateWithoutContactInput | AmbulanceCreateWithoutContactInput[] | AmbulanceUncheckedCreateWithoutContactInput | AmbulanceUncheckedCreateWithoutContactInput[] | No |
| connectOrCreate | AmbulanceCreateOrConnectWithoutContactInput | AmbulanceCreateOrConnectWithoutContactInput[] | No |
| createMany | AmbulanceCreateManyContactInputEnvelope | No |
| connect | AmbulanceWhereUniqueInput | AmbulanceWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | BloodCenterCreateWithoutContact_Contact_blood_centerToBloodCenterInput | BloodCenterUncheckedCreateWithoutContact_Contact_blood_centerToBloodCenterInput | No |
| connectOrCreate | BloodCenterCreateOrConnectWithoutContact_Contact_blood_centerToBloodCenterInput | No |
| connect | BloodCenterWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ClubCreateWithoutContact_Contact_clubToClubInput | ClubUncheckedCreateWithoutContact_Contact_clubToClubInput | No |
| connectOrCreate | ClubCreateOrConnectWithoutContact_Contact_clubToClubInput | No |
| connect | ClubWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CountryCreateWithoutContactInput | CountryUncheckedCreateWithoutContactInput | No |
| connectOrCreate | CountryCreateOrConnectWithoutContactInput | No |
| connect | CountryWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | DonationCreateWithoutContactInput | DonationUncheckedCreateWithoutContactInput | No |
| connectOrCreate | DonationCreateOrConnectWithoutContactInput | No |
| connect | DonationWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | HospitalCreateWithoutContact_Contact_hospitalToHospitalInput | HospitalUncheckedCreateWithoutContact_Contact_hospitalToHospitalInput | No |
| connectOrCreate | HospitalCreateOrConnectWithoutContact_Contact_hospitalToHospitalInput | No |
| connect | HospitalWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PersonCreateWithoutContact_Contact_personToPersonInput | PersonUncheckedCreateWithoutContact_Contact_personToPersonInput | No |
| connectOrCreate | PersonCreateOrConnectWithoutContact_Contact_personToPersonInput | No |
| connect | PersonWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | VersionCreateWithoutContactInput | VersionUncheckedCreateWithoutContactInput | No |
| connectOrCreate | VersionCreateOrConnectWithoutContactInput | No |
| connect | VersionWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | AmbulanceCreateWithoutContactInput | AmbulanceCreateWithoutContactInput[] | AmbulanceUncheckedCreateWithoutContactInput | AmbulanceUncheckedCreateWithoutContactInput[] | No |
| connectOrCreate | AmbulanceCreateOrConnectWithoutContactInput | AmbulanceCreateOrConnectWithoutContactInput[] | No |
| createMany | AmbulanceCreateManyContactInputEnvelope | No |
| connect | AmbulanceWhereUniqueInput | AmbulanceWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ClubCreateWithoutContact_Contact_clubToClubInput | ClubUncheckedCreateWithoutContact_Contact_clubToClubInput | No |
| connectOrCreate | ClubCreateOrConnectWithoutContact_Contact_clubToClubInput | No |
| upsert | ClubUpsertWithoutContact_Contact_clubToClubInput | No |
| disconnect | Boolean | ClubWhereInput | No |
| delete | Boolean | ClubWhereInput | No |
| connect | ClubWhereUniqueInput | No |
| update | ClubUpdateToOneWithWhereWithoutContact_Contact_clubToClubInput | ClubUpdateWithoutContact_Contact_clubToClubInput | ClubUncheckedUpdateWithoutContact_Contact_clubToClubInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CountryCreateWithoutContactInput | CountryUncheckedCreateWithoutContactInput | No |
| connectOrCreate | CountryCreateOrConnectWithoutContactInput | No |
| upsert | CountryUpsertWithoutContactInput | No |
| disconnect | Boolean | CountryWhereInput | No |
| delete | Boolean | CountryWhereInput | No |
| connect | CountryWhereUniqueInput | No |
| update | CountryUpdateToOneWithWhereWithoutContactInput | CountryUpdateWithoutContactInput | CountryUncheckedUpdateWithoutContactInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | DonationCreateWithoutContactInput | DonationUncheckedCreateWithoutContactInput | No |
| connectOrCreate | DonationCreateOrConnectWithoutContactInput | No |
| upsert | DonationUpsertWithoutContactInput | No |
| disconnect | Boolean | DonationWhereInput | No |
| delete | Boolean | DonationWhereInput | No |
| connect | DonationWhereUniqueInput | No |
| update | DonationUpdateToOneWithWhereWithoutContactInput | DonationUpdateWithoutContactInput | DonationUncheckedUpdateWithoutContactInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | HospitalCreateWithoutContact_Contact_hospitalToHospitalInput | HospitalUncheckedCreateWithoutContact_Contact_hospitalToHospitalInput | No |
| connectOrCreate | HospitalCreateOrConnectWithoutContact_Contact_hospitalToHospitalInput | No |
| upsert | HospitalUpsertWithoutContact_Contact_hospitalToHospitalInput | No |
| disconnect | Boolean | HospitalWhereInput | No |
| delete | Boolean | HospitalWhereInput | No |
| connect | HospitalWhereUniqueInput | No |
| update | HospitalUpdateToOneWithWhereWithoutContact_Contact_hospitalToHospitalInput | HospitalUpdateWithoutContact_Contact_hospitalToHospitalInput | HospitalUncheckedUpdateWithoutContact_Contact_hospitalToHospitalInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PersonCreateWithoutContact_Contact_personToPersonInput | PersonUncheckedCreateWithoutContact_Contact_personToPersonInput | No |
| connectOrCreate | PersonCreateOrConnectWithoutContact_Contact_personToPersonInput | No |
| upsert | PersonUpsertWithoutContact_Contact_personToPersonInput | No |
| disconnect | Boolean | PersonWhereInput | No |
| delete | Boolean | PersonWhereInput | No |
| connect | PersonWhereUniqueInput | No |
| update | PersonUpdateToOneWithWhereWithoutContact_Contact_personToPersonInput | PersonUpdateWithoutContact_Contact_personToPersonInput | PersonUncheckedUpdateWithoutContact_Contact_personToPersonInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | VersionCreateWithoutContactInput | VersionUncheckedCreateWithoutContactInput | No |
| connectOrCreate | VersionCreateOrConnectWithoutContactInput | No |
| upsert | VersionUpsertWithoutContactInput | No |
| connect | VersionWhereUniqueInput | No |
| update | VersionUpdateToOneWithWhereWithoutContactInput | VersionUpdateWithoutContactInput | VersionUncheckedUpdateWithoutContactInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ContactCreateWithoutCountryInput | ContactCreateWithoutCountryInput[] | ContactUncheckedCreateWithoutCountryInput | ContactUncheckedCreateWithoutCountryInput[] | No |
| connectOrCreate | ContactCreateOrConnectWithoutCountryInput | ContactCreateOrConnectWithoutCountryInput[] | No |
| createMany | ContactCreateManyCountryInputEnvelope | No |
| connect | ContactWhereUniqueInput | ContactWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | VersionCreateWithoutCountryInput | VersionUncheckedCreateWithoutCountryInput | No |
| connectOrCreate | VersionCreateOrConnectWithoutCountryInput | No |
| connect | VersionWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ContactCreateWithoutCountryInput | ContactCreateWithoutCountryInput[] | ContactUncheckedCreateWithoutCountryInput | ContactUncheckedCreateWithoutCountryInput[] | No |
| connectOrCreate | ContactCreateOrConnectWithoutCountryInput | ContactCreateOrConnectWithoutCountryInput[] | No |
| createMany | ContactCreateManyCountryInputEnvelope | No |
| connect | ContactWhereUniqueInput | ContactWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | VersionCreateWithoutCountryInput | VersionUncheckedCreateWithoutCountryInput | No |
| connectOrCreate | VersionCreateOrConnectWithoutCountryInput | No |
| upsert | VersionUpsertWithoutCountryInput | No |
| connect | VersionWhereUniqueInput | No |
| update | VersionUpdateToOneWithWhereWithoutCountryInput | VersionUpdateWithoutCountryInput | VersionUncheckedUpdateWithoutCountryInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | VersionCreateWithoutDeviceInput | VersionUncheckedCreateWithoutDeviceInput | No |
| connectOrCreate | VersionCreateOrConnectWithoutDeviceInput | No |
| connect | VersionWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | LoginRecordCreateWithoutDeviceInput | LoginRecordCreateWithoutDeviceInput[] | LoginRecordUncheckedCreateWithoutDeviceInput | LoginRecordUncheckedCreateWithoutDeviceInput[] | No |
| connectOrCreate | LoginRecordCreateOrConnectWithoutDeviceInput | LoginRecordCreateOrConnectWithoutDeviceInput[] | No |
| createMany | LoginRecordCreateManyDeviceInputEnvelope | No |
| connect | LoginRecordWhereUniqueInput | LoginRecordWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | LoginRecordCreateWithoutDeviceInput | LoginRecordCreateWithoutDeviceInput[] | LoginRecordUncheckedCreateWithoutDeviceInput | LoginRecordUncheckedCreateWithoutDeviceInput[] | No |
| connectOrCreate | LoginRecordCreateOrConnectWithoutDeviceInput | LoginRecordCreateOrConnectWithoutDeviceInput[] | No |
| createMany | LoginRecordCreateManyDeviceInputEnvelope | No |
| connect | LoginRecordWhereUniqueInput | LoginRecordWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | VersionCreateWithoutDeviceInput | VersionUncheckedCreateWithoutDeviceInput | No |
| connectOrCreate | VersionCreateOrConnectWithoutDeviceInput | No |
| upsert | VersionUpsertWithoutDeviceInput | No |
| connect | VersionWhereUniqueInput | No |
| update | VersionUpdateToOneWithWhereWithoutDeviceInput | VersionUpdateWithoutDeviceInput | VersionUncheckedUpdateWithoutDeviceInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ContactCreateWithoutDonationInput | ContactCreateWithoutDonationInput[] | ContactUncheckedCreateWithoutDonationInput | ContactUncheckedCreateWithoutDonationInput[] | No |
| connectOrCreate | ContactCreateOrConnectWithoutDonationInput | ContactCreateOrConnectWithoutDonationInput[] | No |
| createMany | ContactCreateManyDonationInputEnvelope | No |
| connect | ContactWhereUniqueInput | ContactWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | MemberCreateWithoutDonationInput | MemberUncheckedCreateWithoutDonationInput | No |
| connectOrCreate | MemberCreateOrConnectWithoutDonationInput | No |
| connect | MemberWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrganizationCreateWithoutDonationInput | OrganizationUncheckedCreateWithoutDonationInput | No |
| connectOrCreate | OrganizationCreateOrConnectWithoutDonationInput | No |
| connect | OrganizationWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PersonCreateWithoutDonationInput | PersonUncheckedCreateWithoutDonationInput | No |
| connectOrCreate | PersonCreateOrConnectWithoutDonationInput | No |
| connect | PersonWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | VersionCreateWithoutDonationInput | VersionUncheckedCreateWithoutDonationInput | No |
| connectOrCreate | VersionCreateOrConnectWithoutDonationInput | No |
| connect | VersionWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ContactCreateWithoutDonationInput | ContactCreateWithoutDonationInput[] | ContactUncheckedCreateWithoutDonationInput | ContactUncheckedCreateWithoutDonationInput[] | No |
| connectOrCreate | ContactCreateOrConnectWithoutDonationInput | ContactCreateOrConnectWithoutDonationInput[] | No |
| createMany | ContactCreateManyDonationInputEnvelope | No |
| connect | ContactWhereUniqueInput | ContactWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | MemberCreateWithoutDonationInput | MemberUncheckedCreateWithoutDonationInput | No |
| connectOrCreate | MemberCreateOrConnectWithoutDonationInput | No |
| upsert | MemberUpsertWithoutDonationInput | No |
| connect | MemberWhereUniqueInput | No |
| update | MemberUpdateToOneWithWhereWithoutDonationInput | MemberUpdateWithoutDonationInput | MemberUncheckedUpdateWithoutDonationInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrganizationCreateWithoutDonationInput | OrganizationUncheckedCreateWithoutDonationInput | No |
| connectOrCreate | OrganizationCreateOrConnectWithoutDonationInput | No |
| upsert | OrganizationUpsertWithoutDonationInput | No |
| connect | OrganizationWhereUniqueInput | No |
| update | OrganizationUpdateToOneWithWhereWithoutDonationInput | OrganizationUpdateWithoutDonationInput | OrganizationUncheckedUpdateWithoutDonationInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PersonCreateWithoutDonationInput | PersonUncheckedCreateWithoutDonationInput | No |
| connectOrCreate | PersonCreateOrConnectWithoutDonationInput | No |
| upsert | PersonUpsertWithoutDonationInput | No |
| connect | PersonWhereUniqueInput | No |
| update | PersonUpdateToOneWithWhereWithoutDonationInput | PersonUpdateWithoutDonationInput | PersonUncheckedUpdateWithoutDonationInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | VersionCreateWithoutDonationInput | VersionUncheckedCreateWithoutDonationInput | No |
| connectOrCreate | VersionCreateOrConnectWithoutDonationInput | No |
| upsert | VersionUpsertWithoutDonationInput | No |
| connect | VersionWhereUniqueInput | No |
| update | VersionUpdateToOneWithWhereWithoutDonationInput | VersionUpdateWithoutDonationInput | VersionUncheckedUpdateWithoutDonationInput | No |
| Name | Type | Nullable |
|---|---|---|
| set | String | No |
| Name | Type | Nullable |
|---|---|---|
| set | String | No |
| Name | Type | Nullable |
|---|---|---|
| create | ContactCreateWithoutHospital_Hospital_contactToContactInput | ContactUncheckedCreateWithoutHospital_Hospital_contactToContactInput | No |
| connectOrCreate | ContactCreateOrConnectWithoutHospital_Hospital_contactToContactInput | No |
| connect | ContactWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | LocationCreateWithoutHospitalInput | LocationUncheckedCreateWithoutHospitalInput | No |
| connectOrCreate | LocationCreateOrConnectWithoutHospitalInput | No |
| connect | LocationWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | VersionCreateWithoutHospitalInput | VersionUncheckedCreateWithoutHospitalInput | No |
| connectOrCreate | VersionCreateOrConnectWithoutHospitalInput | No |
| connect | VersionWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| set | Boolean | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| set | String | No |
| push | String | String | No |
| Name | Type | Nullable |
|---|---|---|
| set | String | No |
| push | String | String | No |
| Name | Type | Nullable |
|---|---|---|
| set | Float | Null | Yes |
| increment | Float | No |
| decrement | Float | No |
| multiply | Float | No |
| divide | Float | No |
| Name | Type | Nullable |
|---|---|---|
| set | FacilityType | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| create | ContactCreateWithoutHospital_Hospital_contactToContactInput | ContactUncheckedCreateWithoutHospital_Hospital_contactToContactInput | No |
| connectOrCreate | ContactCreateOrConnectWithoutHospital_Hospital_contactToContactInput | No |
| upsert | ContactUpsertWithoutHospital_Hospital_contactToContactInput | No |
| disconnect | Boolean | ContactWhereInput | No |
| delete | Boolean | ContactWhereInput | No |
| connect | ContactWhereUniqueInput | No |
| update | ContactUpdateToOneWithWhereWithoutHospital_Hospital_contactToContactInput | ContactUpdateWithoutHospital_Hospital_contactToContactInput | ContactUncheckedUpdateWithoutHospital_Hospital_contactToContactInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | LocationCreateWithoutHospitalInput | LocationUncheckedCreateWithoutHospitalInput | No |
| connectOrCreate | LocationCreateOrConnectWithoutHospitalInput | No |
| upsert | LocationUpsertWithoutHospitalInput | No |
| disconnect | Boolean | LocationWhereInput | No |
| delete | Boolean | LocationWhereInput | No |
| connect | LocationWhereUniqueInput | No |
| update | LocationUpdateToOneWithWhereWithoutHospitalInput | LocationUpdateWithoutHospitalInput | LocationUncheckedUpdateWithoutHospitalInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | VersionCreateWithoutHospitalInput | VersionUncheckedCreateWithoutHospitalInput | No |
| connectOrCreate | VersionCreateOrConnectWithoutHospitalInput | No |
| upsert | VersionUpsertWithoutHospitalInput | No |
| connect | VersionWhereUniqueInput | No |
| update | VersionUpdateToOneWithWhereWithoutHospitalInput | VersionUpdateWithoutHospitalInput | VersionUncheckedUpdateWithoutHospitalInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | HospitalCreateWithoutLocationInput | HospitalCreateWithoutLocationInput[] | HospitalUncheckedCreateWithoutLocationInput | HospitalUncheckedCreateWithoutLocationInput[] | No |
| connectOrCreate | HospitalCreateOrConnectWithoutLocationInput | HospitalCreateOrConnectWithoutLocationInput[] | No |
| createMany | HospitalCreateManyLocationInputEnvelope | No |
| connect | HospitalWhereUniqueInput | HospitalWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | VersionCreateWithoutLocationInput | VersionUncheckedCreateWithoutLocationInput | No |
| connectOrCreate | VersionCreateOrConnectWithoutLocationInput | No |
| connect | VersionWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | HospitalCreateWithoutLocationInput | HospitalCreateWithoutLocationInput[] | HospitalUncheckedCreateWithoutLocationInput | HospitalUncheckedCreateWithoutLocationInput[] | No |
| connectOrCreate | HospitalCreateOrConnectWithoutLocationInput | HospitalCreateOrConnectWithoutLocationInput[] | No |
| createMany | HospitalCreateManyLocationInputEnvelope | No |
| connect | HospitalWhereUniqueInput | HospitalWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| set | Float | No |
| increment | Float | No |
| decrement | Float | No |
| multiply | Float | No |
| divide | Float | No |
| Name | Type | Nullable |
|---|---|---|
| create | VersionCreateWithoutLocationInput | VersionUncheckedCreateWithoutLocationInput | No |
| connectOrCreate | VersionCreateOrConnectWithoutLocationInput | No |
| upsert | VersionUpsertWithoutLocationInput | No |
| connect | VersionWhereUniqueInput | No |
| update | VersionUpdateToOneWithWhereWithoutLocationInput | VersionUpdateWithoutLocationInput | VersionUncheckedUpdateWithoutLocationInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | DeviceCreateWithoutLoginRecordInput | DeviceUncheckedCreateWithoutLoginRecordInput | No |
| connectOrCreate | DeviceCreateOrConnectWithoutLoginRecordInput | No |
| connect | DeviceWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | VersionCreateWithoutLoginRecordInput | VersionUncheckedCreateWithoutLoginRecordInput | No |
| connectOrCreate | VersionCreateOrConnectWithoutLoginRecordInput | No |
| connect | VersionWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutLoginRecordInput | UserCreateWithoutLoginRecordInput[] | UserUncheckedCreateWithoutLoginRecordInput | UserUncheckedCreateWithoutLoginRecordInput[] | No |
| connectOrCreate | UserCreateOrConnectWithoutLoginRecordInput | UserCreateOrConnectWithoutLoginRecordInput[] | No |
| createMany | UserCreateManyLoginRecordInputEnvelope | No |
| connect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutLoginRecordInput | UserCreateWithoutLoginRecordInput[] | UserUncheckedCreateWithoutLoginRecordInput | UserUncheckedCreateWithoutLoginRecordInput[] | No |
| connectOrCreate | UserCreateOrConnectWithoutLoginRecordInput | UserCreateOrConnectWithoutLoginRecordInput[] | No |
| createMany | UserCreateManyLoginRecordInputEnvelope | No |
| connect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| set | AuthenticationMethod | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| create | DeviceCreateWithoutLoginRecordInput | DeviceUncheckedCreateWithoutLoginRecordInput | No |
| connectOrCreate | DeviceCreateOrConnectWithoutLoginRecordInput | No |
| upsert | DeviceUpsertWithoutLoginRecordInput | No |
| disconnect | Boolean | DeviceWhereInput | No |
| delete | Boolean | DeviceWhereInput | No |
| connect | DeviceWhereUniqueInput | No |
| update | DeviceUpdateToOneWithWhereWithoutLoginRecordInput | DeviceUpdateWithoutLoginRecordInput | DeviceUncheckedUpdateWithoutLoginRecordInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | VersionCreateWithoutLoginRecordInput | VersionUncheckedCreateWithoutLoginRecordInput | No |
| connectOrCreate | VersionCreateOrConnectWithoutLoginRecordInput | No |
| upsert | VersionUpsertWithoutLoginRecordInput | No |
| connect | VersionWhereUniqueInput | No |
| update | VersionUpdateToOneWithWhereWithoutLoginRecordInput | VersionUpdateWithoutLoginRecordInput | VersionUncheckedUpdateWithoutLoginRecordInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutLoginRecordInput | UserCreateWithoutLoginRecordInput[] | UserUncheckedCreateWithoutLoginRecordInput | UserUncheckedCreateWithoutLoginRecordInput[] | No |
| connectOrCreate | UserCreateOrConnectWithoutLoginRecordInput | UserCreateOrConnectWithoutLoginRecordInput[] | No |
| upsert | UserUpsertWithWhereUniqueWithoutLoginRecordInput | UserUpsertWithWhereUniqueWithoutLoginRecordInput[] | No |
| createMany | UserCreateManyLoginRecordInputEnvelope | No |
| set | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| disconnect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| delete | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| connect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| update | UserUpdateWithWhereUniqueWithoutLoginRecordInput | UserUpdateWithWhereUniqueWithoutLoginRecordInput[] | No |
| updateMany | UserUpdateManyWithWhereWithoutLoginRecordInput | UserUpdateManyWithWhereWithoutLoginRecordInput[] | No |
| deleteMany | UserScalarWhereInput | UserScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutLoginRecordInput | UserCreateWithoutLoginRecordInput[] | UserUncheckedCreateWithoutLoginRecordInput | UserUncheckedCreateWithoutLoginRecordInput[] | No |
| connectOrCreate | UserCreateOrConnectWithoutLoginRecordInput | UserCreateOrConnectWithoutLoginRecordInput[] | No |
| upsert | UserUpsertWithWhereUniqueWithoutLoginRecordInput | UserUpsertWithWhereUniqueWithoutLoginRecordInput[] | No |
| createMany | UserCreateManyLoginRecordInputEnvelope | No |
| set | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| disconnect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| delete | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| connect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| update | UserUpdateWithWhereUniqueWithoutLoginRecordInput | UserUpdateWithWhereUniqueWithoutLoginRecordInput[] | No |
| updateMany | UserUpdateManyWithWhereWithoutLoginRecordInput | UserUpdateManyWithWhereWithoutLoginRecordInput[] | No |
| deleteMany | UserScalarWhereInput | UserScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | DonationCreateWithoutMemberInput | DonationCreateWithoutMemberInput[] | DonationUncheckedCreateWithoutMemberInput | DonationUncheckedCreateWithoutMemberInput[] | No |
| connectOrCreate | DonationCreateOrConnectWithoutMemberInput | DonationCreateOrConnectWithoutMemberInput[] | No |
| createMany | DonationCreateManyMemberInputEnvelope | No |
| connect | DonationWhereUniqueInput | DonationWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ClubCreateWithoutMemberInput | ClubUncheckedCreateWithoutMemberInput | No |
| connectOrCreate | ClubCreateOrConnectWithoutMemberInput | No |
| connect | ClubWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PersonCreateWithoutMemberInput | PersonUncheckedCreateWithoutMemberInput | No |
| connectOrCreate | PersonCreateOrConnectWithoutMemberInput | No |
| connect | PersonWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | VersionCreateWithoutMemberInput | VersionUncheckedCreateWithoutMemberInput | No |
| connectOrCreate | VersionCreateOrConnectWithoutMemberInput | No |
| connect | VersionWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | RequestCreateWithoutMemberInput | RequestCreateWithoutMemberInput[] | RequestUncheckedCreateWithoutMemberInput | RequestUncheckedCreateWithoutMemberInput[] | No |
| connectOrCreate | RequestCreateOrConnectWithoutMemberInput | RequestCreateOrConnectWithoutMemberInput[] | No |
| createMany | RequestCreateManyMemberInputEnvelope | No |
| connect | RequestWhereUniqueInput | RequestWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | DonationCreateWithoutMemberInput | DonationCreateWithoutMemberInput[] | DonationUncheckedCreateWithoutMemberInput | DonationUncheckedCreateWithoutMemberInput[] | No |
| connectOrCreate | DonationCreateOrConnectWithoutMemberInput | DonationCreateOrConnectWithoutMemberInput[] | No |
| createMany | DonationCreateManyMemberInputEnvelope | No |
| connect | DonationWhereUniqueInput | DonationWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | RequestCreateWithoutMemberInput | RequestCreateWithoutMemberInput[] | RequestUncheckedCreateWithoutMemberInput | RequestUncheckedCreateWithoutMemberInput[] | No |
| connectOrCreate | RequestCreateOrConnectWithoutMemberInput | RequestCreateOrConnectWithoutMemberInput[] | No |
| createMany | RequestCreateManyMemberInputEnvelope | No |
| connect | RequestWhereUniqueInput | RequestWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ClubCreateWithoutMemberInput | ClubUncheckedCreateWithoutMemberInput | No |
| connectOrCreate | ClubCreateOrConnectWithoutMemberInput | No |
| upsert | ClubUpsertWithoutMemberInput | No |
| disconnect | Boolean | ClubWhereInput | No |
| delete | Boolean | ClubWhereInput | No |
| connect | ClubWhereUniqueInput | No |
| update | ClubUpdateToOneWithWhereWithoutMemberInput | ClubUpdateWithoutMemberInput | ClubUncheckedUpdateWithoutMemberInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PersonCreateWithoutMemberInput | PersonUncheckedCreateWithoutMemberInput | No |
| connectOrCreate | PersonCreateOrConnectWithoutMemberInput | No |
| upsert | PersonUpsertWithoutMemberInput | No |
| disconnect | Boolean | PersonWhereInput | No |
| delete | Boolean | PersonWhereInput | No |
| connect | PersonWhereUniqueInput | No |
| update | PersonUpdateToOneWithWhereWithoutMemberInput | PersonUpdateWithoutMemberInput | PersonUncheckedUpdateWithoutMemberInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | VersionCreateWithoutMemberInput | VersionUncheckedCreateWithoutMemberInput | No |
| connectOrCreate | VersionCreateOrConnectWithoutMemberInput | No |
| upsert | VersionUpsertWithoutMemberInput | No |
| connect | VersionWhereUniqueInput | No |
| update | VersionUpdateToOneWithWhereWithoutMemberInput | VersionUpdateWithoutMemberInput | VersionUncheckedUpdateWithoutMemberInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | RequestCreateWithoutMemberInput | RequestCreateWithoutMemberInput[] | RequestUncheckedCreateWithoutMemberInput | RequestUncheckedCreateWithoutMemberInput[] | No |
| connectOrCreate | RequestCreateOrConnectWithoutMemberInput | RequestCreateOrConnectWithoutMemberInput[] | No |
| upsert | RequestUpsertWithWhereUniqueWithoutMemberInput | RequestUpsertWithWhereUniqueWithoutMemberInput[] | No |
| createMany | RequestCreateManyMemberInputEnvelope | No |
| set | RequestWhereUniqueInput | RequestWhereUniqueInput[] | No |
| disconnect | RequestWhereUniqueInput | RequestWhereUniqueInput[] | No |
| delete | RequestWhereUniqueInput | RequestWhereUniqueInput[] | No |
| connect | RequestWhereUniqueInput | RequestWhereUniqueInput[] | No |
| update | RequestUpdateWithWhereUniqueWithoutMemberInput | RequestUpdateWithWhereUniqueWithoutMemberInput[] | No |
| updateMany | RequestUpdateManyWithWhereWithoutMemberInput | RequestUpdateManyWithWhereWithoutMemberInput[] | No |
| deleteMany | RequestScalarWhereInput | RequestScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | RequestCreateWithoutMemberInput | RequestCreateWithoutMemberInput[] | RequestUncheckedCreateWithoutMemberInput | RequestUncheckedCreateWithoutMemberInput[] | No |
| connectOrCreate | RequestCreateOrConnectWithoutMemberInput | RequestCreateOrConnectWithoutMemberInput[] | No |
| upsert | RequestUpsertWithWhereUniqueWithoutMemberInput | RequestUpsertWithWhereUniqueWithoutMemberInput[] | No |
| createMany | RequestCreateManyMemberInputEnvelope | No |
| set | RequestWhereUniqueInput | RequestWhereUniqueInput[] | No |
| disconnect | RequestWhereUniqueInput | RequestWhereUniqueInput[] | No |
| delete | RequestWhereUniqueInput | RequestWhereUniqueInput[] | No |
| connect | RequestWhereUniqueInput | RequestWhereUniqueInput[] | No |
| update | RequestUpdateWithWhereUniqueWithoutMemberInput | RequestUpdateWithWhereUniqueWithoutMemberInput[] | No |
| updateMany | RequestUpdateManyWithWhereWithoutMemberInput | RequestUpdateManyWithWhereWithoutMemberInput[] | No |
| deleteMany | RequestScalarWhereInput | RequestScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | DonationCreateWithoutOrganizationInput | DonationCreateWithoutOrganizationInput[] | DonationUncheckedCreateWithoutOrganizationInput | DonationUncheckedCreateWithoutOrganizationInput[] | No |
| connectOrCreate | DonationCreateOrConnectWithoutOrganizationInput | DonationCreateOrConnectWithoutOrganizationInput[] | No |
| createMany | DonationCreateManyOrganizationInputEnvelope | No |
| connect | DonationWhereUniqueInput | DonationWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ClubCreateWithoutOrganizationInput | ClubUncheckedCreateWithoutOrganizationInput | No |
| connectOrCreate | ClubCreateOrConnectWithoutOrganizationInput | No |
| connect | ClubWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrganizationSettingsCreateWithoutOrganizationInput | OrganizationSettingsUncheckedCreateWithoutOrganizationInput | No |
| connectOrCreate | OrganizationSettingsCreateOrConnectWithoutOrganizationInput | No |
| connect | OrganizationSettingsWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PersonCreateWithoutOrganizationInput | PersonUncheckedCreateWithoutOrganizationInput | No |
| connectOrCreate | PersonCreateOrConnectWithoutOrganizationInput | No |
| connect | PersonWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | VersionCreateWithoutOrganizationInput | VersionUncheckedCreateWithoutOrganizationInput | No |
| connectOrCreate | VersionCreateOrConnectWithoutOrganizationInput | No |
| connect | VersionWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | SupportCreateWithoutOrganizationInput | SupportCreateWithoutOrganizationInput[] | SupportUncheckedCreateWithoutOrganizationInput | SupportUncheckedCreateWithoutOrganizationInput[] | No |
| connectOrCreate | SupportCreateOrConnectWithoutOrganizationInput | SupportCreateOrConnectWithoutOrganizationInput[] | No |
| createMany | SupportCreateManyOrganizationInputEnvelope | No |
| connect | SupportWhereUniqueInput | SupportWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TeamCreateWithoutOrganizationInput | TeamCreateWithoutOrganizationInput[] | TeamUncheckedCreateWithoutOrganizationInput | TeamUncheckedCreateWithoutOrganizationInput[] | No |
| connectOrCreate | TeamCreateOrConnectWithoutOrganizationInput | TeamCreateOrConnectWithoutOrganizationInput[] | No |
| createMany | TeamCreateManyOrganizationInputEnvelope | No |
| connect | TeamWhereUniqueInput | TeamWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | DonationCreateWithoutOrganizationInput | DonationCreateWithoutOrganizationInput[] | DonationUncheckedCreateWithoutOrganizationInput | DonationUncheckedCreateWithoutOrganizationInput[] | No |
| connectOrCreate | DonationCreateOrConnectWithoutOrganizationInput | DonationCreateOrConnectWithoutOrganizationInput[] | No |
| createMany | DonationCreateManyOrganizationInputEnvelope | No |
| connect | DonationWhereUniqueInput | DonationWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | SupportCreateWithoutOrganizationInput | SupportCreateWithoutOrganizationInput[] | SupportUncheckedCreateWithoutOrganizationInput | SupportUncheckedCreateWithoutOrganizationInput[] | No |
| connectOrCreate | SupportCreateOrConnectWithoutOrganizationInput | SupportCreateOrConnectWithoutOrganizationInput[] | No |
| createMany | SupportCreateManyOrganizationInputEnvelope | No |
| connect | SupportWhereUniqueInput | SupportWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TeamCreateWithoutOrganizationInput | TeamCreateWithoutOrganizationInput[] | TeamUncheckedCreateWithoutOrganizationInput | TeamUncheckedCreateWithoutOrganizationInput[] | No |
| connectOrCreate | TeamCreateOrConnectWithoutOrganizationInput | TeamCreateOrConnectWithoutOrganizationInput[] | No |
| createMany | TeamCreateManyOrganizationInputEnvelope | No |
| connect | TeamWhereUniqueInput | TeamWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| set | OrgType | No |
| Name | Type | Nullable |
|---|---|---|
| create | ClubCreateWithoutOrganizationInput | ClubUncheckedCreateWithoutOrganizationInput | No |
| connectOrCreate | ClubCreateOrConnectWithoutOrganizationInput | No |
| upsert | ClubUpsertWithoutOrganizationInput | No |
| disconnect | Boolean | ClubWhereInput | No |
| delete | Boolean | ClubWhereInput | No |
| connect | ClubWhereUniqueInput | No |
| update | ClubUpdateToOneWithWhereWithoutOrganizationInput | ClubUpdateWithoutOrganizationInput | ClubUncheckedUpdateWithoutOrganizationInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PersonCreateWithoutOrganizationInput | PersonUncheckedCreateWithoutOrganizationInput | No |
| connectOrCreate | PersonCreateOrConnectWithoutOrganizationInput | No |
| upsert | PersonUpsertWithoutOrganizationInput | No |
| connect | PersonWhereUniqueInput | No |
| update | PersonUpdateToOneWithWhereWithoutOrganizationInput | PersonUpdateWithoutOrganizationInput | PersonUncheckedUpdateWithoutOrganizationInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | VersionCreateWithoutOrganizationInput | VersionUncheckedCreateWithoutOrganizationInput | No |
| connectOrCreate | VersionCreateOrConnectWithoutOrganizationInput | No |
| upsert | VersionUpsertWithoutOrganizationInput | No |
| connect | VersionWhereUniqueInput | No |
| update | VersionUpdateToOneWithWhereWithoutOrganizationInput | VersionUpdateWithoutOrganizationInput | VersionUncheckedUpdateWithoutOrganizationInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | TeamCreateWithoutOrganizationInput | TeamCreateWithoutOrganizationInput[] | TeamUncheckedCreateWithoutOrganizationInput | TeamUncheckedCreateWithoutOrganizationInput[] | No |
| connectOrCreate | TeamCreateOrConnectWithoutOrganizationInput | TeamCreateOrConnectWithoutOrganizationInput[] | No |
| upsert | TeamUpsertWithWhereUniqueWithoutOrganizationInput | TeamUpsertWithWhereUniqueWithoutOrganizationInput[] | No |
| createMany | TeamCreateManyOrganizationInputEnvelope | No |
| set | TeamWhereUniqueInput | TeamWhereUniqueInput[] | No |
| disconnect | TeamWhereUniqueInput | TeamWhereUniqueInput[] | No |
| delete | TeamWhereUniqueInput | TeamWhereUniqueInput[] | No |
| connect | TeamWhereUniqueInput | TeamWhereUniqueInput[] | No |
| update | TeamUpdateWithWhereUniqueWithoutOrganizationInput | TeamUpdateWithWhereUniqueWithoutOrganizationInput[] | No |
| updateMany | TeamUpdateManyWithWhereWithoutOrganizationInput | TeamUpdateManyWithWhereWithoutOrganizationInput[] | No |
| deleteMany | TeamScalarWhereInput | TeamScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TeamCreateWithoutOrganizationInput | TeamCreateWithoutOrganizationInput[] | TeamUncheckedCreateWithoutOrganizationInput | TeamUncheckedCreateWithoutOrganizationInput[] | No |
| connectOrCreate | TeamCreateOrConnectWithoutOrganizationInput | TeamCreateOrConnectWithoutOrganizationInput[] | No |
| upsert | TeamUpsertWithWhereUniqueWithoutOrganizationInput | TeamUpsertWithWhereUniqueWithoutOrganizationInput[] | No |
| createMany | TeamCreateManyOrganizationInputEnvelope | No |
| set | TeamWhereUniqueInput | TeamWhereUniqueInput[] | No |
| disconnect | TeamWhereUniqueInput | TeamWhereUniqueInput[] | No |
| delete | TeamWhereUniqueInput | TeamWhereUniqueInput[] | No |
| connect | TeamWhereUniqueInput | TeamWhereUniqueInput[] | No |
| update | TeamUpdateWithWhereUniqueWithoutOrganizationInput | TeamUpdateWithWhereUniqueWithoutOrganizationInput[] | No |
| updateMany | TeamUpdateManyWithWhereWithoutOrganizationInput | TeamUpdateManyWithWhereWithoutOrganizationInput[] | No |
| deleteMany | TeamScalarWhereInput | TeamScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | LoginRecordCreateWithoutOrganizationSettingsInput | LoginRecordUncheckedCreateWithoutOrganizationSettingsInput | No |
| connectOrCreate | LoginRecordCreateOrConnectWithoutOrganizationSettingsInput | No |
| connect | LoginRecordWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | VersionCreateWithoutOrganizationSettingsInput | VersionUncheckedCreateWithoutOrganizationSettingsInput | No |
| connectOrCreate | VersionCreateOrConnectWithoutOrganizationSettingsInput | No |
| connect | VersionWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| set | Language | No |
| Name | Type | Nullable |
|---|---|---|
| set | TimeFormat | No |
| Name | Type | Nullable |
|---|---|---|
| set | DateFormat | No |
| Name | Type | Nullable |
|---|---|---|
| set | Timezone | No |
| Name | Type | Nullable |
|---|---|---|
| set | Theme | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| set | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| create | LoginRecordCreateWithoutOrganizationSettingsInput | LoginRecordUncheckedCreateWithoutOrganizationSettingsInput | No |
| connectOrCreate | LoginRecordCreateOrConnectWithoutOrganizationSettingsInput | No |
| upsert | LoginRecordUpsertWithoutOrganizationSettingsInput | No |
| disconnect | Boolean | LoginRecordWhereInput | No |
| delete | Boolean | LoginRecordWhereInput | No |
| connect | LoginRecordWhereUniqueInput | No |
| update | LoginRecordUpdateToOneWithWhereWithoutOrganizationSettingsInput | LoginRecordUpdateWithoutOrganizationSettingsInput | LoginRecordUncheckedUpdateWithoutOrganizationSettingsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | AmbulanceCreateWithoutPersonInput | AmbulanceCreateWithoutPersonInput[] | AmbulanceUncheckedCreateWithoutPersonInput | AmbulanceUncheckedCreateWithoutPersonInput[] | No |
| connectOrCreate | AmbulanceCreateOrConnectWithoutPersonInput | AmbulanceCreateOrConnectWithoutPersonInput[] | No |
| createMany | AmbulanceCreateManyPersonInputEnvelope | No |
| connect | AmbulanceWhereUniqueInput | AmbulanceWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | BloodCenterCreateWithoutPersonInput | BloodCenterCreateWithoutPersonInput[] | BloodCenterUncheckedCreateWithoutPersonInput | BloodCenterUncheckedCreateWithoutPersonInput[] | No |
| connectOrCreate | BloodCenterCreateOrConnectWithoutPersonInput | BloodCenterCreateOrConnectWithoutPersonInput[] | No |
| createMany | BloodCenterCreateManyPersonInputEnvelope | No |
| connect | BloodCenterWhereUniqueInput | BloodCenterWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | DonationCreateWithoutPersonInput | DonationCreateWithoutPersonInput[] | DonationUncheckedCreateWithoutPersonInput | DonationUncheckedCreateWithoutPersonInput[] | No |
| connectOrCreate | DonationCreateOrConnectWithoutPersonInput | DonationCreateOrConnectWithoutPersonInput[] | No |
| createMany | DonationCreateManyPersonInputEnvelope | No |
| connect | DonationWhereUniqueInput | DonationWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | MemberCreateWithoutPersonInput | MemberCreateWithoutPersonInput[] | MemberUncheckedCreateWithoutPersonInput | MemberUncheckedCreateWithoutPersonInput[] | No |
| connectOrCreate | MemberCreateOrConnectWithoutPersonInput | MemberCreateOrConnectWithoutPersonInput[] | No |
| createMany | MemberCreateManyPersonInputEnvelope | No |
| connect | MemberWhereUniqueInput | MemberWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrganizationCreateWithoutPersonInput | OrganizationCreateWithoutPersonInput[] | OrganizationUncheckedCreateWithoutPersonInput | OrganizationUncheckedCreateWithoutPersonInput[] | No |
| connectOrCreate | OrganizationCreateOrConnectWithoutPersonInput | OrganizationCreateOrConnectWithoutPersonInput[] | No |
| createMany | OrganizationCreateManyPersonInputEnvelope | No |
| connect | OrganizationWhereUniqueInput | OrganizationWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ContactCreateWithoutPerson_Person_contact_idToContactInput | ContactUncheckedCreateWithoutPerson_Person_contact_idToContactInput | No |
| connectOrCreate | ContactCreateOrConnectWithoutPerson_Person_contact_idToContactInput | No |
| connect | ContactWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | TeamCreateWithoutPerson_Person_teamIdToTeamInput | TeamUncheckedCreateWithoutPerson_Person_teamIdToTeamInput | No |
| connectOrCreate | TeamCreateOrConnectWithoutPerson_Person_teamIdToTeamInput | No |
| connect | TeamWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | VersionCreateWithoutPersonInput | VersionUncheckedCreateWithoutPersonInput | No |
| connectOrCreate | VersionCreateOrConnectWithoutPersonInput | No |
| connect | VersionWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | RequestCreateWithoutPersonInput | RequestCreateWithoutPersonInput[] | RequestUncheckedCreateWithoutPersonInput | RequestUncheckedCreateWithoutPersonInput[] | No |
| connectOrCreate | RequestCreateOrConnectWithoutPersonInput | RequestCreateOrConnectWithoutPersonInput[] | No |
| createMany | RequestCreateManyPersonInputEnvelope | No |
| connect | RequestWhereUniqueInput | RequestWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutPersonInput | UserCreateWithoutPersonInput[] | UserUncheckedCreateWithoutPersonInput | UserUncheckedCreateWithoutPersonInput[] | No |
| connectOrCreate | UserCreateOrConnectWithoutPersonInput | UserCreateOrConnectWithoutPersonInput[] | No |
| createMany | UserCreateManyPersonInputEnvelope | No |
| connect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | AmbulanceCreateWithoutPersonInput | AmbulanceCreateWithoutPersonInput[] | AmbulanceUncheckedCreateWithoutPersonInput | AmbulanceUncheckedCreateWithoutPersonInput[] | No |
| connectOrCreate | AmbulanceCreateOrConnectWithoutPersonInput | AmbulanceCreateOrConnectWithoutPersonInput[] | No |
| createMany | AmbulanceCreateManyPersonInputEnvelope | No |
| connect | AmbulanceWhereUniqueInput | AmbulanceWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | BloodCenterCreateWithoutPersonInput | BloodCenterCreateWithoutPersonInput[] | BloodCenterUncheckedCreateWithoutPersonInput | BloodCenterUncheckedCreateWithoutPersonInput[] | No |
| connectOrCreate | BloodCenterCreateOrConnectWithoutPersonInput | BloodCenterCreateOrConnectWithoutPersonInput[] | No |
| createMany | BloodCenterCreateManyPersonInputEnvelope | No |
| connect | BloodCenterWhereUniqueInput | BloodCenterWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | DonationCreateWithoutPersonInput | DonationCreateWithoutPersonInput[] | DonationUncheckedCreateWithoutPersonInput | DonationUncheckedCreateWithoutPersonInput[] | No |
| connectOrCreate | DonationCreateOrConnectWithoutPersonInput | DonationCreateOrConnectWithoutPersonInput[] | No |
| createMany | DonationCreateManyPersonInputEnvelope | No |
| connect | DonationWhereUniqueInput | DonationWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | MemberCreateWithoutPersonInput | MemberCreateWithoutPersonInput[] | MemberUncheckedCreateWithoutPersonInput | MemberUncheckedCreateWithoutPersonInput[] | No |
| connectOrCreate | MemberCreateOrConnectWithoutPersonInput | MemberCreateOrConnectWithoutPersonInput[] | No |
| createMany | MemberCreateManyPersonInputEnvelope | No |
| connect | MemberWhereUniqueInput | MemberWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrganizationCreateWithoutPersonInput | OrganizationCreateWithoutPersonInput[] | OrganizationUncheckedCreateWithoutPersonInput | OrganizationUncheckedCreateWithoutPersonInput[] | No |
| connectOrCreate | OrganizationCreateOrConnectWithoutPersonInput | OrganizationCreateOrConnectWithoutPersonInput[] | No |
| createMany | OrganizationCreateManyPersonInputEnvelope | No |
| connect | OrganizationWhereUniqueInput | OrganizationWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | RequestCreateWithoutPersonInput | RequestCreateWithoutPersonInput[] | RequestUncheckedCreateWithoutPersonInput | RequestUncheckedCreateWithoutPersonInput[] | No |
| connectOrCreate | RequestCreateOrConnectWithoutPersonInput | RequestCreateOrConnectWithoutPersonInput[] | No |
| createMany | RequestCreateManyPersonInputEnvelope | No |
| connect | RequestWhereUniqueInput | RequestWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutPersonInput | UserCreateWithoutPersonInput[] | UserUncheckedCreateWithoutPersonInput | UserUncheckedCreateWithoutPersonInput[] | No |
| connectOrCreate | UserCreateOrConnectWithoutPersonInput | UserCreateOrConnectWithoutPersonInput[] | No |
| createMany | UserCreateManyPersonInputEnvelope | No |
| connect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| set | Gender | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| create | MemberCreateWithoutPersonInput | MemberCreateWithoutPersonInput[] | MemberUncheckedCreateWithoutPersonInput | MemberUncheckedCreateWithoutPersonInput[] | No |
| connectOrCreate | MemberCreateOrConnectWithoutPersonInput | MemberCreateOrConnectWithoutPersonInput[] | No |
| upsert | MemberUpsertWithWhereUniqueWithoutPersonInput | MemberUpsertWithWhereUniqueWithoutPersonInput[] | No |
| createMany | MemberCreateManyPersonInputEnvelope | No |
| set | MemberWhereUniqueInput | MemberWhereUniqueInput[] | No |
| disconnect | MemberWhereUniqueInput | MemberWhereUniqueInput[] | No |
| delete | MemberWhereUniqueInput | MemberWhereUniqueInput[] | No |
| connect | MemberWhereUniqueInput | MemberWhereUniqueInput[] | No |
| update | MemberUpdateWithWhereUniqueWithoutPersonInput | MemberUpdateWithWhereUniqueWithoutPersonInput[] | No |
| updateMany | MemberUpdateManyWithWhereWithoutPersonInput | MemberUpdateManyWithWhereWithoutPersonInput[] | No |
| deleteMany | MemberScalarWhereInput | MemberScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TeamCreateWithoutPerson_Person_teamIdToTeamInput | TeamUncheckedCreateWithoutPerson_Person_teamIdToTeamInput | No |
| connectOrCreate | TeamCreateOrConnectWithoutPerson_Person_teamIdToTeamInput | No |
| upsert | TeamUpsertWithoutPerson_Person_teamIdToTeamInput | No |
| disconnect | Boolean | TeamWhereInput | No |
| delete | Boolean | TeamWhereInput | No |
| connect | TeamWhereUniqueInput | No |
| update | TeamUpdateToOneWithWhereWithoutPerson_Person_teamIdToTeamInput | TeamUpdateWithoutPerson_Person_teamIdToTeamInput | TeamUncheckedUpdateWithoutPerson_Person_teamIdToTeamInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | VersionCreateWithoutPersonInput | VersionUncheckedCreateWithoutPersonInput | No |
| connectOrCreate | VersionCreateOrConnectWithoutPersonInput | No |
| upsert | VersionUpsertWithoutPersonInput | No |
| connect | VersionWhereUniqueInput | No |
| update | VersionUpdateToOneWithWhereWithoutPersonInput | VersionUpdateWithoutPersonInput | VersionUncheckedUpdateWithoutPersonInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | RequestCreateWithoutPersonInput | RequestCreateWithoutPersonInput[] | RequestUncheckedCreateWithoutPersonInput | RequestUncheckedCreateWithoutPersonInput[] | No |
| connectOrCreate | RequestCreateOrConnectWithoutPersonInput | RequestCreateOrConnectWithoutPersonInput[] | No |
| upsert | RequestUpsertWithWhereUniqueWithoutPersonInput | RequestUpsertWithWhereUniqueWithoutPersonInput[] | No |
| createMany | RequestCreateManyPersonInputEnvelope | No |
| set | RequestWhereUniqueInput | RequestWhereUniqueInput[] | No |
| disconnect | RequestWhereUniqueInput | RequestWhereUniqueInput[] | No |
| delete | RequestWhereUniqueInput | RequestWhereUniqueInput[] | No |
| connect | RequestWhereUniqueInput | RequestWhereUniqueInput[] | No |
| update | RequestUpdateWithWhereUniqueWithoutPersonInput | RequestUpdateWithWhereUniqueWithoutPersonInput[] | No |
| updateMany | RequestUpdateManyWithWhereWithoutPersonInput | RequestUpdateManyWithWhereWithoutPersonInput[] | No |
| deleteMany | RequestScalarWhereInput | RequestScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutPersonInput | UserCreateWithoutPersonInput[] | UserUncheckedCreateWithoutPersonInput | UserUncheckedCreateWithoutPersonInput[] | No |
| connectOrCreate | UserCreateOrConnectWithoutPersonInput | UserCreateOrConnectWithoutPersonInput[] | No |
| upsert | UserUpsertWithWhereUniqueWithoutPersonInput | UserUpsertWithWhereUniqueWithoutPersonInput[] | No |
| createMany | UserCreateManyPersonInputEnvelope | No |
| set | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| disconnect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| delete | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| connect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| update | UserUpdateWithWhereUniqueWithoutPersonInput | UserUpdateWithWhereUniqueWithoutPersonInput[] | No |
| updateMany | UserUpdateManyWithWhereWithoutPersonInput | UserUpdateManyWithWhereWithoutPersonInput[] | No |
| deleteMany | UserScalarWhereInput | UserScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | MemberCreateWithoutPersonInput | MemberCreateWithoutPersonInput[] | MemberUncheckedCreateWithoutPersonInput | MemberUncheckedCreateWithoutPersonInput[] | No |
| connectOrCreate | MemberCreateOrConnectWithoutPersonInput | MemberCreateOrConnectWithoutPersonInput[] | No |
| upsert | MemberUpsertWithWhereUniqueWithoutPersonInput | MemberUpsertWithWhereUniqueWithoutPersonInput[] | No |
| createMany | MemberCreateManyPersonInputEnvelope | No |
| set | MemberWhereUniqueInput | MemberWhereUniqueInput[] | No |
| disconnect | MemberWhereUniqueInput | MemberWhereUniqueInput[] | No |
| delete | MemberWhereUniqueInput | MemberWhereUniqueInput[] | No |
| connect | MemberWhereUniqueInput | MemberWhereUniqueInput[] | No |
| update | MemberUpdateWithWhereUniqueWithoutPersonInput | MemberUpdateWithWhereUniqueWithoutPersonInput[] | No |
| updateMany | MemberUpdateManyWithWhereWithoutPersonInput | MemberUpdateManyWithWhereWithoutPersonInput[] | No |
| deleteMany | MemberScalarWhereInput | MemberScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | RequestCreateWithoutPersonInput | RequestCreateWithoutPersonInput[] | RequestUncheckedCreateWithoutPersonInput | RequestUncheckedCreateWithoutPersonInput[] | No |
| connectOrCreate | RequestCreateOrConnectWithoutPersonInput | RequestCreateOrConnectWithoutPersonInput[] | No |
| upsert | RequestUpsertWithWhereUniqueWithoutPersonInput | RequestUpsertWithWhereUniqueWithoutPersonInput[] | No |
| createMany | RequestCreateManyPersonInputEnvelope | No |
| set | RequestWhereUniqueInput | RequestWhereUniqueInput[] | No |
| disconnect | RequestWhereUniqueInput | RequestWhereUniqueInput[] | No |
| delete | RequestWhereUniqueInput | RequestWhereUniqueInput[] | No |
| connect | RequestWhereUniqueInput | RequestWhereUniqueInput[] | No |
| update | RequestUpdateWithWhereUniqueWithoutPersonInput | RequestUpdateWithWhereUniqueWithoutPersonInput[] | No |
| updateMany | RequestUpdateManyWithWhereWithoutPersonInput | RequestUpdateManyWithWhereWithoutPersonInput[] | No |
| deleteMany | RequestScalarWhereInput | RequestScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutPersonInput | UserCreateWithoutPersonInput[] | UserUncheckedCreateWithoutPersonInput | UserUncheckedCreateWithoutPersonInput[] | No |
| connectOrCreate | UserCreateOrConnectWithoutPersonInput | UserCreateOrConnectWithoutPersonInput[] | No |
| upsert | UserUpsertWithWhereUniqueWithoutPersonInput | UserUpsertWithWhereUniqueWithoutPersonInput[] | No |
| createMany | UserCreateManyPersonInputEnvelope | No |
| set | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| disconnect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| delete | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| connect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| update | UserUpdateWithWhereUniqueWithoutPersonInput | UserUpdateWithWhereUniqueWithoutPersonInput[] | No |
| updateMany | UserUpdateManyWithWhereWithoutPersonInput | UserUpdateManyWithWhereWithoutPersonInput[] | No |
| deleteMany | UserScalarWhereInput | UserScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | MemberCreateWithoutRequestInput | MemberUncheckedCreateWithoutRequestInput | No |
| connectOrCreate | MemberCreateOrConnectWithoutRequestInput | No |
| connect | MemberWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PersonCreateWithoutRequestInput | PersonUncheckedCreateWithoutRequestInput | No |
| connectOrCreate | PersonCreateOrConnectWithoutRequestInput | No |
| connect | PersonWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | VersionCreateWithoutRequestInput | VersionUncheckedCreateWithoutRequestInput | No |
| connectOrCreate | VersionCreateOrConnectWithoutRequestInput | No |
| connect | VersionWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| set | BloodGroup | No |
| Name | Type | Nullable |
|---|---|---|
| create | MemberCreateWithoutRequestInput | MemberUncheckedCreateWithoutRequestInput | No |
| connectOrCreate | MemberCreateOrConnectWithoutRequestInput | No |
| upsert | MemberUpsertWithoutRequestInput | No |
| disconnect | Boolean | MemberWhereInput | No |
| delete | Boolean | MemberWhereInput | No |
| connect | MemberWhereUniqueInput | No |
| update | MemberUpdateToOneWithWhereWithoutRequestInput | MemberUpdateWithoutRequestInput | MemberUncheckedUpdateWithoutRequestInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PersonCreateWithoutRequestInput | PersonUncheckedCreateWithoutRequestInput | No |
| connectOrCreate | PersonCreateOrConnectWithoutRequestInput | No |
| upsert | PersonUpsertWithoutRequestInput | No |
| connect | PersonWhereUniqueInput | No |
| update | PersonUpdateToOneWithWhereWithoutRequestInput | PersonUpdateWithoutRequestInput | PersonUncheckedUpdateWithoutRequestInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | VersionCreateWithoutRequestInput | VersionUncheckedCreateWithoutRequestInput | No |
| connectOrCreate | VersionCreateOrConnectWithoutRequestInput | No |
| upsert | VersionUpsertWithoutRequestInput | No |
| connect | VersionWhereUniqueInput | No |
| update | VersionUpdateToOneWithWhereWithoutRequestInput | VersionUpdateWithoutRequestInput | VersionUncheckedUpdateWithoutRequestInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutSecurityQuestionInput | UserUncheckedCreateWithoutSecurityQuestionInput | No |
| connectOrCreate | UserCreateOrConnectWithoutSecurityQuestionInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | VersionCreateWithoutSecurityQuestionInput | VersionUncheckedCreateWithoutSecurityQuestionInput | No |
| connectOrCreate | VersionCreateOrConnectWithoutSecurityQuestionInput | No |
| connect | VersionWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutSecurityQuestionInput | UserUncheckedCreateWithoutSecurityQuestionInput | No |
| connectOrCreate | UserCreateOrConnectWithoutSecurityQuestionInput | No |
| upsert | UserUpsertWithoutSecurityQuestionInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateToOneWithWhereWithoutSecurityQuestionInput | UserUpdateWithoutSecurityQuestionInput | UserUncheckedUpdateWithoutSecurityQuestionInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | VersionCreateWithoutSecurityQuestionInput | VersionUncheckedCreateWithoutSecurityQuestionInput | No |
| connectOrCreate | VersionCreateOrConnectWithoutSecurityQuestionInput | No |
| upsert | VersionUpsertWithoutSecurityQuestionInput | No |
| connect | VersionWhereUniqueInput | No |
| update | VersionUpdateToOneWithWhereWithoutSecurityQuestionInput | VersionUpdateWithoutSecurityQuestionInput | VersionUncheckedUpdateWithoutSecurityQuestionInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | VersionCreateWithoutSocialMediaLinksInput | VersionUncheckedCreateWithoutSocialMediaLinksInput | No |
| connectOrCreate | VersionCreateOrConnectWithoutSocialMediaLinksInput | No |
| connect | VersionWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutSocialMediaLinksInput | UserCreateWithoutSocialMediaLinksInput[] | UserUncheckedCreateWithoutSocialMediaLinksInput | UserUncheckedCreateWithoutSocialMediaLinksInput[] | No |
| connectOrCreate | UserCreateOrConnectWithoutSocialMediaLinksInput | UserCreateOrConnectWithoutSocialMediaLinksInput[] | No |
| createMany | UserCreateManySocialMediaLinksInputEnvelope | No |
| connect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutSocialMediaLinksInput | UserCreateWithoutSocialMediaLinksInput[] | UserUncheckedCreateWithoutSocialMediaLinksInput | UserUncheckedCreateWithoutSocialMediaLinksInput[] | No |
| connectOrCreate | UserCreateOrConnectWithoutSocialMediaLinksInput | UserCreateOrConnectWithoutSocialMediaLinksInput[] | No |
| createMany | UserCreateManySocialMediaLinksInputEnvelope | No |
| connect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | VersionCreateWithoutSocialMediaLinksInput | VersionUncheckedCreateWithoutSocialMediaLinksInput | No |
| connectOrCreate | VersionCreateOrConnectWithoutSocialMediaLinksInput | No |
| upsert | VersionUpsertWithoutSocialMediaLinksInput | No |
| connect | VersionWhereUniqueInput | No |
| update | VersionUpdateToOneWithWhereWithoutSocialMediaLinksInput | VersionUpdateWithoutSocialMediaLinksInput | VersionUncheckedUpdateWithoutSocialMediaLinksInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrganizationCreateWithoutSupportInput | OrganizationUncheckedCreateWithoutSupportInput | No |
| connectOrCreate | OrganizationCreateOrConnectWithoutSupportInput | No |
| connect | OrganizationWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | VersionCreateWithoutSupportInput | VersionUncheckedCreateWithoutSupportInput | No |
| connectOrCreate | VersionCreateOrConnectWithoutSupportInput | No |
| connect | VersionWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrganizationCreateWithoutSupportInput | OrganizationUncheckedCreateWithoutSupportInput | No |
| connectOrCreate | OrganizationCreateOrConnectWithoutSupportInput | No |
| upsert | OrganizationUpsertWithoutSupportInput | No |
| connect | OrganizationWhereUniqueInput | No |
| update | OrganizationUpdateToOneWithWhereWithoutSupportInput | OrganizationUpdateWithoutSupportInput | OrganizationUncheckedUpdateWithoutSupportInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | VersionCreateWithoutSupportInput | VersionUncheckedCreateWithoutSupportInput | No |
| connectOrCreate | VersionCreateOrConnectWithoutSupportInput | No |
| upsert | VersionUpsertWithoutSupportInput | No |
| connect | VersionWhereUniqueInput | No |
| update | VersionUpdateToOneWithWhereWithoutSupportInput | VersionUpdateWithoutSupportInput | VersionUncheckedUpdateWithoutSupportInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PersonCreateWithoutSupportMessageInput | PersonUncheckedCreateWithoutSupportMessageInput | No |
| connectOrCreate | PersonCreateOrConnectWithoutSupportMessageInput | No |
| connect | PersonWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrganizationCreateWithoutSupportMessageInput | OrganizationUncheckedCreateWithoutSupportMessageInput | No |
| connectOrCreate | OrganizationCreateOrConnectWithoutSupportMessageInput | No |
| connect | OrganizationWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | SupportCreateWithoutSupportMessageInput | SupportUncheckedCreateWithoutSupportMessageInput | No |
| connectOrCreate | SupportCreateOrConnectWithoutSupportMessageInput | No |
| connect | SupportWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | VersionCreateWithoutSupportMessageInput | VersionUncheckedCreateWithoutSupportMessageInput | No |
| connectOrCreate | VersionCreateOrConnectWithoutSupportMessageInput | No |
| connect | VersionWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PersonCreateWithoutSupportMessageInput | PersonUncheckedCreateWithoutSupportMessageInput | No |
| connectOrCreate | PersonCreateOrConnectWithoutSupportMessageInput | No |
| upsert | PersonUpsertWithoutSupportMessageInput | No |
| connect | PersonWhereUniqueInput | No |
| update | PersonUpdateToOneWithWhereWithoutSupportMessageInput | PersonUpdateWithoutSupportMessageInput | PersonUncheckedUpdateWithoutSupportMessageInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | SupportCreateWithoutSupportMessageInput | SupportUncheckedCreateWithoutSupportMessageInput | No |
| connectOrCreate | SupportCreateOrConnectWithoutSupportMessageInput | No |
| upsert | SupportUpsertWithoutSupportMessageInput | No |
| connect | SupportWhereUniqueInput | No |
| update | SupportUpdateToOneWithWhereWithoutSupportMessageInput | SupportUpdateWithoutSupportMessageInput | SupportUncheckedUpdateWithoutSupportMessageInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | VersionCreateWithoutSupportMessageInput | VersionUncheckedCreateWithoutSupportMessageInput | No |
| connectOrCreate | VersionCreateOrConnectWithoutSupportMessageInput | No |
| upsert | VersionUpsertWithoutSupportMessageInput | No |
| connect | VersionWhereUniqueInput | No |
| update | VersionUpdateToOneWithWhereWithoutSupportMessageInput | VersionUpdateWithoutSupportMessageInput | VersionUncheckedUpdateWithoutSupportMessageInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PersonCreateWithoutTeam_Team_membersToPersonInput | PersonUncheckedCreateWithoutTeam_Team_membersToPersonInput | No |
| connectOrCreate | PersonCreateOrConnectWithoutTeam_Team_membersToPersonInput | No |
| connect | PersonWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrganizationCreateWithoutTeamInput | OrganizationUncheckedCreateWithoutTeamInput | No |
| connectOrCreate | OrganizationCreateOrConnectWithoutTeamInput | No |
| connect | OrganizationWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | VersionCreateWithoutTeamInput | VersionUncheckedCreateWithoutTeamInput | No |
| connectOrCreate | VersionCreateOrConnectWithoutTeamInput | No |
| connect | VersionWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrganizationCreateWithoutTeamInput | OrganizationUncheckedCreateWithoutTeamInput | No |
| connectOrCreate | OrganizationCreateOrConnectWithoutTeamInput | No |
| upsert | OrganizationUpsertWithoutTeamInput | No |
| connect | OrganizationWhereUniqueInput | No |
| update | OrganizationUpdateToOneWithWhereWithoutTeamInput | OrganizationUpdateWithoutTeamInput | OrganizationUncheckedUpdateWithoutTeamInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | VersionCreateWithoutTeamInput | VersionUncheckedCreateWithoutTeamInput | No |
| connectOrCreate | VersionCreateOrConnectWithoutTeamInput | No |
| upsert | VersionUpsertWithoutTeamInput | No |
| connect | VersionWhereUniqueInput | No |
| update | VersionUpdateToOneWithWhereWithoutTeamInput | VersionUpdateWithoutTeamInput | VersionUncheckedUpdateWithoutTeamInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | VersionCreateWithoutTwoFactorAuthInput | VersionUncheckedCreateWithoutTwoFactorAuthInput | No |
| connectOrCreate | VersionCreateOrConnectWithoutTwoFactorAuthInput | No |
| connect | VersionWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutTwoFactorAuthInput | UserCreateWithoutTwoFactorAuthInput[] | UserUncheckedCreateWithoutTwoFactorAuthInput | UserUncheckedCreateWithoutTwoFactorAuthInput[] | No |
| connectOrCreate | UserCreateOrConnectWithoutTwoFactorAuthInput | UserCreateOrConnectWithoutTwoFactorAuthInput[] | No |
| createMany | UserCreateManyTwoFactorAuthInputEnvelope | No |
| connect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutTwoFactorAuthInput | UserCreateWithoutTwoFactorAuthInput[] | UserUncheckedCreateWithoutTwoFactorAuthInput | UserUncheckedCreateWithoutTwoFactorAuthInput[] | No |
| connectOrCreate | UserCreateOrConnectWithoutTwoFactorAuthInput | UserCreateOrConnectWithoutTwoFactorAuthInput[] | No |
| createMany | UserCreateManyTwoFactorAuthInputEnvelope | No |
| connect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | VersionCreateWithoutTwoFactorAuthInput | VersionUncheckedCreateWithoutTwoFactorAuthInput | No |
| connectOrCreate | VersionCreateOrConnectWithoutTwoFactorAuthInput | No |
| upsert | VersionUpsertWithoutTwoFactorAuthInput | No |
| connect | VersionWhereUniqueInput | No |
| update | VersionUpdateToOneWithWhereWithoutTwoFactorAuthInput | VersionUpdateWithoutTwoFactorAuthInput | VersionUncheckedUpdateWithoutTwoFactorAuthInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | LoginRecordCreateWithoutUserInput | LoginRecordUncheckedCreateWithoutUserInput | No |
| connectOrCreate | LoginRecordCreateOrConnectWithoutUserInput | No |
| connect | LoginRecordWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PersonCreateWithoutUserInput | PersonUncheckedCreateWithoutUserInput | No |
| connectOrCreate | PersonCreateOrConnectWithoutUserInput | No |
| connect | PersonWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | SocialMediaLinksCreateWithoutUserInput | SocialMediaLinksUncheckedCreateWithoutUserInput | No |
| connectOrCreate | SocialMediaLinksCreateOrConnectWithoutUserInput | No |
| connect | SocialMediaLinksWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | TwoFactorAuthCreateWithoutUserInput | TwoFactorAuthUncheckedCreateWithoutUserInput | No |
| connectOrCreate | TwoFactorAuthCreateOrConnectWithoutUserInput | No |
| connect | TwoFactorAuthWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserSettingsCreateWithoutUserInput | UserSettingsUncheckedCreateWithoutUserInput | No |
| connectOrCreate | UserSettingsCreateOrConnectWithoutUserInput | No |
| connect | UserSettingsWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | VersionCreateWithoutUserInput | VersionUncheckedCreateWithoutUserInput | No |
| connectOrCreate | VersionCreateOrConnectWithoutUserInput | No |
| connect | VersionWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserRoleCreateWithoutUserInput | UserRoleCreateWithoutUserInput[] | UserRoleUncheckedCreateWithoutUserInput | UserRoleUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | UserRoleCreateOrConnectWithoutUserInput | UserRoleCreateOrConnectWithoutUserInput[] | No |
| createMany | UserRoleCreateManyUserInputEnvelope | No |
| connect | UserRoleWhereUniqueInput | UserRoleWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserRoleCreateWithoutUserInput | UserRoleCreateWithoutUserInput[] | UserRoleUncheckedCreateWithoutUserInput | UserRoleUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | UserRoleCreateOrConnectWithoutUserInput | UserRoleCreateOrConnectWithoutUserInput[] | No |
| createMany | UserRoleCreateManyUserInputEnvelope | No |
| connect | UserRoleWhereUniqueInput | UserRoleWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| set | AccountStatus | No |
| Name | Type | Nullable |
|---|---|---|
| create | LoginRecordCreateWithoutUserInput | LoginRecordUncheckedCreateWithoutUserInput | No |
| connectOrCreate | LoginRecordCreateOrConnectWithoutUserInput | No |
| upsert | LoginRecordUpsertWithoutUserInput | No |
| connect | LoginRecordWhereUniqueInput | No |
| update | LoginRecordUpdateToOneWithWhereWithoutUserInput | LoginRecordUpdateWithoutUserInput | LoginRecordUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PersonCreateWithoutUserInput | PersonUncheckedCreateWithoutUserInput | No |
| connectOrCreate | PersonCreateOrConnectWithoutUserInput | No |
| upsert | PersonUpsertWithoutUserInput | No |
| connect | PersonWhereUniqueInput | No |
| update | PersonUpdateToOneWithWhereWithoutUserInput | PersonUpdateWithoutUserInput | PersonUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | SocialMediaLinksCreateWithoutUserInput | SocialMediaLinksUncheckedCreateWithoutUserInput | No |
| connectOrCreate | SocialMediaLinksCreateOrConnectWithoutUserInput | No |
| upsert | SocialMediaLinksUpsertWithoutUserInput | No |
| connect | SocialMediaLinksWhereUniqueInput | No |
| update | SocialMediaLinksUpdateToOneWithWhereWithoutUserInput | SocialMediaLinksUpdateWithoutUserInput | SocialMediaLinksUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | TwoFactorAuthCreateWithoutUserInput | TwoFactorAuthUncheckedCreateWithoutUserInput | No |
| connectOrCreate | TwoFactorAuthCreateOrConnectWithoutUserInput | No |
| upsert | TwoFactorAuthUpsertWithoutUserInput | No |
| connect | TwoFactorAuthWhereUniqueInput | No |
| update | TwoFactorAuthUpdateToOneWithWhereWithoutUserInput | TwoFactorAuthUpdateWithoutUserInput | TwoFactorAuthUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserSettingsCreateWithoutUserInput | UserSettingsUncheckedCreateWithoutUserInput | No |
| connectOrCreate | UserSettingsCreateOrConnectWithoutUserInput | No |
| upsert | UserSettingsUpsertWithoutUserInput | No |
| connect | UserSettingsWhereUniqueInput | No |
| update | UserSettingsUpdateToOneWithWhereWithoutUserInput | UserSettingsUpdateWithoutUserInput | UserSettingsUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | VersionCreateWithoutUserInput | VersionUncheckedCreateWithoutUserInput | No |
| connectOrCreate | VersionCreateOrConnectWithoutUserInput | No |
| upsert | VersionUpsertWithoutUserInput | No |
| connect | VersionWhereUniqueInput | No |
| update | VersionUpdateToOneWithWhereWithoutUserInput | VersionUpdateWithoutUserInput | VersionUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserRoleCreateWithoutUserInput | UserRoleCreateWithoutUserInput[] | UserRoleUncheckedCreateWithoutUserInput | UserRoleUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | UserRoleCreateOrConnectWithoutUserInput | UserRoleCreateOrConnectWithoutUserInput[] | No |
| upsert | UserRoleUpsertWithWhereUniqueWithoutUserInput | UserRoleUpsertWithWhereUniqueWithoutUserInput[] | No |
| createMany | UserRoleCreateManyUserInputEnvelope | No |
| set | UserRoleWhereUniqueInput | UserRoleWhereUniqueInput[] | No |
| disconnect | UserRoleWhereUniqueInput | UserRoleWhereUniqueInput[] | No |
| delete | UserRoleWhereUniqueInput | UserRoleWhereUniqueInput[] | No |
| connect | UserRoleWhereUniqueInput | UserRoleWhereUniqueInput[] | No |
| update | UserRoleUpdateWithWhereUniqueWithoutUserInput | UserRoleUpdateWithWhereUniqueWithoutUserInput[] | No |
| updateMany | UserRoleUpdateManyWithWhereWithoutUserInput | UserRoleUpdateManyWithWhereWithoutUserInput[] | No |
| deleteMany | UserRoleScalarWhereInput | UserRoleScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserRoleCreateWithoutUserInput | UserRoleCreateWithoutUserInput[] | UserRoleUncheckedCreateWithoutUserInput | UserRoleUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | UserRoleCreateOrConnectWithoutUserInput | UserRoleCreateOrConnectWithoutUserInput[] | No |
| upsert | UserRoleUpsertWithWhereUniqueWithoutUserInput | UserRoleUpsertWithWhereUniqueWithoutUserInput[] | No |
| createMany | UserRoleCreateManyUserInputEnvelope | No |
| set | UserRoleWhereUniqueInput | UserRoleWhereUniqueInput[] | No |
| disconnect | UserRoleWhereUniqueInput | UserRoleWhereUniqueInput[] | No |
| delete | UserRoleWhereUniqueInput | UserRoleWhereUniqueInput[] | No |
| connect | UserRoleWhereUniqueInput | UserRoleWhereUniqueInput[] | No |
| update | UserRoleUpdateWithWhereUniqueWithoutUserInput | UserRoleUpdateWithWhereUniqueWithoutUserInput[] | No |
| updateMany | UserRoleUpdateManyWithWhereWithoutUserInput | UserRoleUpdateManyWithWhereWithoutUserInput[] | No |
| deleteMany | UserRoleScalarWhereInput | UserRoleScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutUserRoleInput | UserUncheckedCreateWithoutUserRoleInput | No |
| connectOrCreate | UserCreateOrConnectWithoutUserRoleInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | VersionCreateWithoutUserRoleInput | VersionUncheckedCreateWithoutUserRoleInput | No |
| connectOrCreate | VersionCreateOrConnectWithoutUserRoleInput | No |
| connect | VersionWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutUserRoleInput | UserUncheckedCreateWithoutUserRoleInput | No |
| connectOrCreate | UserCreateOrConnectWithoutUserRoleInput | No |
| upsert | UserUpsertWithoutUserRoleInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateToOneWithWhereWithoutUserRoleInput | UserUpdateWithoutUserRoleInput | UserUncheckedUpdateWithoutUserRoleInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | VersionCreateWithoutUserRoleInput | VersionUncheckedCreateWithoutUserRoleInput | No |
| connectOrCreate | VersionCreateOrConnectWithoutUserRoleInput | No |
| upsert | VersionUpsertWithoutUserRoleInput | No |
| connect | VersionWhereUniqueInput | No |
| update | VersionUpdateToOneWithWhereWithoutUserRoleInput | VersionUpdateWithoutUserRoleInput | VersionUncheckedUpdateWithoutUserRoleInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutUserSettingsInput | UserCreateWithoutUserSettingsInput[] | UserUncheckedCreateWithoutUserSettingsInput | UserUncheckedCreateWithoutUserSettingsInput[] | No |
| connectOrCreate | UserCreateOrConnectWithoutUserSettingsInput | UserCreateOrConnectWithoutUserSettingsInput[] | No |
| createMany | UserCreateManyUserSettingsInputEnvelope | No |
| connect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | LoginRecordCreateWithoutUserSettingsInput | LoginRecordUncheckedCreateWithoutUserSettingsInput | No |
| connectOrCreate | LoginRecordCreateOrConnectWithoutUserSettingsInput | No |
| connect | LoginRecordWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | SecurityQuestionCreateWithoutUserSettingsInput | SecurityQuestionUncheckedCreateWithoutUserSettingsInput | No |
| connectOrCreate | SecurityQuestionCreateOrConnectWithoutUserSettingsInput | No |
| connect | SecurityQuestionWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | VersionCreateWithoutUserSettingsInput | VersionUncheckedCreateWithoutUserSettingsInput | No |
| connectOrCreate | VersionCreateOrConnectWithoutUserSettingsInput | No |
| connect | VersionWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutUserSettingsInput | UserCreateWithoutUserSettingsInput[] | UserUncheckedCreateWithoutUserSettingsInput | UserUncheckedCreateWithoutUserSettingsInput[] | No |
| connectOrCreate | UserCreateOrConnectWithoutUserSettingsInput | UserCreateOrConnectWithoutUserSettingsInput[] | No |
| createMany | UserCreateManyUserSettingsInputEnvelope | No |
| connect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutUserSettingsInput | UserCreateWithoutUserSettingsInput[] | UserUncheckedCreateWithoutUserSettingsInput | UserUncheckedCreateWithoutUserSettingsInput[] | No |
| connectOrCreate | UserCreateOrConnectWithoutUserSettingsInput | UserCreateOrConnectWithoutUserSettingsInput[] | No |
| upsert | UserUpsertWithWhereUniqueWithoutUserSettingsInput | UserUpsertWithWhereUniqueWithoutUserSettingsInput[] | No |
| createMany | UserCreateManyUserSettingsInputEnvelope | No |
| set | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| disconnect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| delete | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| connect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| update | UserUpdateWithWhereUniqueWithoutUserSettingsInput | UserUpdateWithWhereUniqueWithoutUserSettingsInput[] | No |
| updateMany | UserUpdateManyWithWhereWithoutUserSettingsInput | UserUpdateManyWithWhereWithoutUserSettingsInput[] | No |
| deleteMany | UserScalarWhereInput | UserScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | LoginRecordCreateWithoutUserSettingsInput | LoginRecordUncheckedCreateWithoutUserSettingsInput | No |
| connectOrCreate | LoginRecordCreateOrConnectWithoutUserSettingsInput | No |
| upsert | LoginRecordUpsertWithoutUserSettingsInput | No |
| connect | LoginRecordWhereUniqueInput | No |
| update | LoginRecordUpdateToOneWithWhereWithoutUserSettingsInput | LoginRecordUpdateWithoutUserSettingsInput | LoginRecordUncheckedUpdateWithoutUserSettingsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | SecurityQuestionCreateWithoutUserSettingsInput | SecurityQuestionUncheckedCreateWithoutUserSettingsInput | No |
| connectOrCreate | SecurityQuestionCreateOrConnectWithoutUserSettingsInput | No |
| upsert | SecurityQuestionUpsertWithoutUserSettingsInput | No |
| disconnect | Boolean | SecurityQuestionWhereInput | No |
| delete | Boolean | SecurityQuestionWhereInput | No |
| connect | SecurityQuestionWhereUniqueInput | No |
| update | SecurityQuestionUpdateToOneWithWhereWithoutUserSettingsInput | SecurityQuestionUpdateWithoutUserSettingsInput | SecurityQuestionUncheckedUpdateWithoutUserSettingsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | VersionCreateWithoutUserSettingsInput | VersionUncheckedCreateWithoutUserSettingsInput | No |
| connectOrCreate | VersionCreateOrConnectWithoutUserSettingsInput | No |
| upsert | VersionUpsertWithoutUserSettingsInput | No |
| connect | VersionWhereUniqueInput | No |
| update | VersionUpdateToOneWithWhereWithoutUserSettingsInput | VersionUpdateWithoutUserSettingsInput | VersionUncheckedUpdateWithoutUserSettingsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutUserSettingsInput | UserCreateWithoutUserSettingsInput[] | UserUncheckedCreateWithoutUserSettingsInput | UserUncheckedCreateWithoutUserSettingsInput[] | No |
| connectOrCreate | UserCreateOrConnectWithoutUserSettingsInput | UserCreateOrConnectWithoutUserSettingsInput[] | No |
| upsert | UserUpsertWithWhereUniqueWithoutUserSettingsInput | UserUpsertWithWhereUniqueWithoutUserSettingsInput[] | No |
| createMany | UserCreateManyUserSettingsInputEnvelope | No |
| set | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| disconnect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| delete | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| connect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| update | UserUpdateWithWhereUniqueWithoutUserSettingsInput | UserUpdateWithWhereUniqueWithoutUserSettingsInput[] | No |
| updateMany | UserUpdateManyWithWhereWithoutUserSettingsInput | UserUpdateManyWithWhereWithoutUserSettingsInput[] | No |
| deleteMany | UserScalarWhereInput | UserScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | AmbulanceCreateWithoutVersionInput | AmbulanceCreateWithoutVersionInput[] | AmbulanceUncheckedCreateWithoutVersionInput | AmbulanceUncheckedCreateWithoutVersionInput[] | No |
| connectOrCreate | AmbulanceCreateOrConnectWithoutVersionInput | AmbulanceCreateOrConnectWithoutVersionInput[] | No |
| createMany | AmbulanceCreateManyVersionInputEnvelope | No |
| connect | AmbulanceWhereUniqueInput | AmbulanceWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | BloodCenterCreateWithoutVersionInput | BloodCenterCreateWithoutVersionInput[] | BloodCenterUncheckedCreateWithoutVersionInput | BloodCenterUncheckedCreateWithoutVersionInput[] | No |
| connectOrCreate | BloodCenterCreateOrConnectWithoutVersionInput | BloodCenterCreateOrConnectWithoutVersionInput[] | No |
| createMany | BloodCenterCreateManyVersionInputEnvelope | No |
| connect | BloodCenterWhereUniqueInput | BloodCenterWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ClubCreateWithoutVersionInput | ClubCreateWithoutVersionInput[] | ClubUncheckedCreateWithoutVersionInput | ClubUncheckedCreateWithoutVersionInput[] | No |
| connectOrCreate | ClubCreateOrConnectWithoutVersionInput | ClubCreateOrConnectWithoutVersionInput[] | No |
| createMany | ClubCreateManyVersionInputEnvelope | No |
| connect | ClubWhereUniqueInput | ClubWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ContactCreateWithoutVersionInput | ContactCreateWithoutVersionInput[] | ContactUncheckedCreateWithoutVersionInput | ContactUncheckedCreateWithoutVersionInput[] | No |
| connectOrCreate | ContactCreateOrConnectWithoutVersionInput | ContactCreateOrConnectWithoutVersionInput[] | No |
| createMany | ContactCreateManyVersionInputEnvelope | No |
| connect | ContactWhereUniqueInput | ContactWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | CountryCreateWithoutVersionInput | CountryCreateWithoutVersionInput[] | CountryUncheckedCreateWithoutVersionInput | CountryUncheckedCreateWithoutVersionInput[] | No |
| connectOrCreate | CountryCreateOrConnectWithoutVersionInput | CountryCreateOrConnectWithoutVersionInput[] | No |
| createMany | CountryCreateManyVersionInputEnvelope | No |
| connect | CountryWhereUniqueInput | CountryWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | DeviceCreateWithoutVersionInput | DeviceCreateWithoutVersionInput[] | DeviceUncheckedCreateWithoutVersionInput | DeviceUncheckedCreateWithoutVersionInput[] | No |
| connectOrCreate | DeviceCreateOrConnectWithoutVersionInput | DeviceCreateOrConnectWithoutVersionInput[] | No |
| createMany | DeviceCreateManyVersionInputEnvelope | No |
| connect | DeviceWhereUniqueInput | DeviceWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | DonationCreateWithoutVersionInput | DonationCreateWithoutVersionInput[] | DonationUncheckedCreateWithoutVersionInput | DonationUncheckedCreateWithoutVersionInput[] | No |
| connectOrCreate | DonationCreateOrConnectWithoutVersionInput | DonationCreateOrConnectWithoutVersionInput[] | No |
| createMany | DonationCreateManyVersionInputEnvelope | No |
| connect | DonationWhereUniqueInput | DonationWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | HospitalCreateWithoutVersionInput | HospitalCreateWithoutVersionInput[] | HospitalUncheckedCreateWithoutVersionInput | HospitalUncheckedCreateWithoutVersionInput[] | No |
| connectOrCreate | HospitalCreateOrConnectWithoutVersionInput | HospitalCreateOrConnectWithoutVersionInput[] | No |
| createMany | HospitalCreateManyVersionInputEnvelope | No |
| connect | HospitalWhereUniqueInput | HospitalWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | LocationCreateWithoutVersionInput | LocationCreateWithoutVersionInput[] | LocationUncheckedCreateWithoutVersionInput | LocationUncheckedCreateWithoutVersionInput[] | No |
| connectOrCreate | LocationCreateOrConnectWithoutVersionInput | LocationCreateOrConnectWithoutVersionInput[] | No |
| createMany | LocationCreateManyVersionInputEnvelope | No |
| connect | LocationWhereUniqueInput | LocationWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | LoginRecordCreateWithoutVersionInput | LoginRecordCreateWithoutVersionInput[] | LoginRecordUncheckedCreateWithoutVersionInput | LoginRecordUncheckedCreateWithoutVersionInput[] | No |
| connectOrCreate | LoginRecordCreateOrConnectWithoutVersionInput | LoginRecordCreateOrConnectWithoutVersionInput[] | No |
| createMany | LoginRecordCreateManyVersionInputEnvelope | No |
| connect | LoginRecordWhereUniqueInput | LoginRecordWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | MemberCreateWithoutVersionInput | MemberCreateWithoutVersionInput[] | MemberUncheckedCreateWithoutVersionInput | MemberUncheckedCreateWithoutVersionInput[] | No |
| connectOrCreate | MemberCreateOrConnectWithoutVersionInput | MemberCreateOrConnectWithoutVersionInput[] | No |
| createMany | MemberCreateManyVersionInputEnvelope | No |
| connect | MemberWhereUniqueInput | MemberWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrganizationCreateWithoutVersionInput | OrganizationCreateWithoutVersionInput[] | OrganizationUncheckedCreateWithoutVersionInput | OrganizationUncheckedCreateWithoutVersionInput[] | No |
| connectOrCreate | OrganizationCreateOrConnectWithoutVersionInput | OrganizationCreateOrConnectWithoutVersionInput[] | No |
| createMany | OrganizationCreateManyVersionInputEnvelope | No |
| connect | OrganizationWhereUniqueInput | OrganizationWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PersonCreateWithoutVersionInput | PersonCreateWithoutVersionInput[] | PersonUncheckedCreateWithoutVersionInput | PersonUncheckedCreateWithoutVersionInput[] | No |
| connectOrCreate | PersonCreateOrConnectWithoutVersionInput | PersonCreateOrConnectWithoutVersionInput[] | No |
| createMany | PersonCreateManyVersionInputEnvelope | No |
| connect | PersonWhereUniqueInput | PersonWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | RequestCreateWithoutVersionInput | RequestCreateWithoutVersionInput[] | RequestUncheckedCreateWithoutVersionInput | RequestUncheckedCreateWithoutVersionInput[] | No |
| connectOrCreate | RequestCreateOrConnectWithoutVersionInput | RequestCreateOrConnectWithoutVersionInput[] | No |
| createMany | RequestCreateManyVersionInputEnvelope | No |
| connect | RequestWhereUniqueInput | RequestWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | SupportCreateWithoutVersionInput | SupportCreateWithoutVersionInput[] | SupportUncheckedCreateWithoutVersionInput | SupportUncheckedCreateWithoutVersionInput[] | No |
| connectOrCreate | SupportCreateOrConnectWithoutVersionInput | SupportCreateOrConnectWithoutVersionInput[] | No |
| createMany | SupportCreateManyVersionInputEnvelope | No |
| connect | SupportWhereUniqueInput | SupportWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TeamCreateWithoutVersionInput | TeamCreateWithoutVersionInput[] | TeamUncheckedCreateWithoutVersionInput | TeamUncheckedCreateWithoutVersionInput[] | No |
| connectOrCreate | TeamCreateOrConnectWithoutVersionInput | TeamCreateOrConnectWithoutVersionInput[] | No |
| createMany | TeamCreateManyVersionInputEnvelope | No |
| connect | TeamWhereUniqueInput | TeamWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutVersionInput | UserCreateWithoutVersionInput[] | UserUncheckedCreateWithoutVersionInput | UserUncheckedCreateWithoutVersionInput[] | No |
| connectOrCreate | UserCreateOrConnectWithoutVersionInput | UserCreateOrConnectWithoutVersionInput[] | No |
| createMany | UserCreateManyVersionInputEnvelope | No |
| connect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserRoleCreateWithoutVersionInput | UserRoleCreateWithoutVersionInput[] | UserRoleUncheckedCreateWithoutVersionInput | UserRoleUncheckedCreateWithoutVersionInput[] | No |
| connectOrCreate | UserRoleCreateOrConnectWithoutVersionInput | UserRoleCreateOrConnectWithoutVersionInput[] | No |
| createMany | UserRoleCreateManyVersionInputEnvelope | No |
| connect | UserRoleWhereUniqueInput | UserRoleWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserSettingsCreateWithoutVersionInput | UserSettingsCreateWithoutVersionInput[] | UserSettingsUncheckedCreateWithoutVersionInput | UserSettingsUncheckedCreateWithoutVersionInput[] | No |
| connectOrCreate | UserSettingsCreateOrConnectWithoutVersionInput | UserSettingsCreateOrConnectWithoutVersionInput[] | No |
| createMany | UserSettingsCreateManyVersionInputEnvelope | No |
| connect | UserSettingsWhereUniqueInput | UserSettingsWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | AmbulanceCreateWithoutVersionInput | AmbulanceCreateWithoutVersionInput[] | AmbulanceUncheckedCreateWithoutVersionInput | AmbulanceUncheckedCreateWithoutVersionInput[] | No |
| connectOrCreate | AmbulanceCreateOrConnectWithoutVersionInput | AmbulanceCreateOrConnectWithoutVersionInput[] | No |
| createMany | AmbulanceCreateManyVersionInputEnvelope | No |
| connect | AmbulanceWhereUniqueInput | AmbulanceWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | BloodCenterCreateWithoutVersionInput | BloodCenterCreateWithoutVersionInput[] | BloodCenterUncheckedCreateWithoutVersionInput | BloodCenterUncheckedCreateWithoutVersionInput[] | No |
| connectOrCreate | BloodCenterCreateOrConnectWithoutVersionInput | BloodCenterCreateOrConnectWithoutVersionInput[] | No |
| createMany | BloodCenterCreateManyVersionInputEnvelope | No |
| connect | BloodCenterWhereUniqueInput | BloodCenterWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ClubCreateWithoutVersionInput | ClubCreateWithoutVersionInput[] | ClubUncheckedCreateWithoutVersionInput | ClubUncheckedCreateWithoutVersionInput[] | No |
| connectOrCreate | ClubCreateOrConnectWithoutVersionInput | ClubCreateOrConnectWithoutVersionInput[] | No |
| createMany | ClubCreateManyVersionInputEnvelope | No |
| connect | ClubWhereUniqueInput | ClubWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ContactCreateWithoutVersionInput | ContactCreateWithoutVersionInput[] | ContactUncheckedCreateWithoutVersionInput | ContactUncheckedCreateWithoutVersionInput[] | No |
| connectOrCreate | ContactCreateOrConnectWithoutVersionInput | ContactCreateOrConnectWithoutVersionInput[] | No |
| createMany | ContactCreateManyVersionInputEnvelope | No |
| connect | ContactWhereUniqueInput | ContactWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | CountryCreateWithoutVersionInput | CountryCreateWithoutVersionInput[] | CountryUncheckedCreateWithoutVersionInput | CountryUncheckedCreateWithoutVersionInput[] | No |
| connectOrCreate | CountryCreateOrConnectWithoutVersionInput | CountryCreateOrConnectWithoutVersionInput[] | No |
| createMany | CountryCreateManyVersionInputEnvelope | No |
| connect | CountryWhereUniqueInput | CountryWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | DeviceCreateWithoutVersionInput | DeviceCreateWithoutVersionInput[] | DeviceUncheckedCreateWithoutVersionInput | DeviceUncheckedCreateWithoutVersionInput[] | No |
| connectOrCreate | DeviceCreateOrConnectWithoutVersionInput | DeviceCreateOrConnectWithoutVersionInput[] | No |
| createMany | DeviceCreateManyVersionInputEnvelope | No |
| connect | DeviceWhereUniqueInput | DeviceWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | DonationCreateWithoutVersionInput | DonationCreateWithoutVersionInput[] | DonationUncheckedCreateWithoutVersionInput | DonationUncheckedCreateWithoutVersionInput[] | No |
| connectOrCreate | DonationCreateOrConnectWithoutVersionInput | DonationCreateOrConnectWithoutVersionInput[] | No |
| createMany | DonationCreateManyVersionInputEnvelope | No |
| connect | DonationWhereUniqueInput | DonationWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | HospitalCreateWithoutVersionInput | HospitalCreateWithoutVersionInput[] | HospitalUncheckedCreateWithoutVersionInput | HospitalUncheckedCreateWithoutVersionInput[] | No |
| connectOrCreate | HospitalCreateOrConnectWithoutVersionInput | HospitalCreateOrConnectWithoutVersionInput[] | No |
| createMany | HospitalCreateManyVersionInputEnvelope | No |
| connect | HospitalWhereUniqueInput | HospitalWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | LocationCreateWithoutVersionInput | LocationCreateWithoutVersionInput[] | LocationUncheckedCreateWithoutVersionInput | LocationUncheckedCreateWithoutVersionInput[] | No |
| connectOrCreate | LocationCreateOrConnectWithoutVersionInput | LocationCreateOrConnectWithoutVersionInput[] | No |
| createMany | LocationCreateManyVersionInputEnvelope | No |
| connect | LocationWhereUniqueInput | LocationWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | LoginRecordCreateWithoutVersionInput | LoginRecordCreateWithoutVersionInput[] | LoginRecordUncheckedCreateWithoutVersionInput | LoginRecordUncheckedCreateWithoutVersionInput[] | No |
| connectOrCreate | LoginRecordCreateOrConnectWithoutVersionInput | LoginRecordCreateOrConnectWithoutVersionInput[] | No |
| createMany | LoginRecordCreateManyVersionInputEnvelope | No |
| connect | LoginRecordWhereUniqueInput | LoginRecordWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | MemberCreateWithoutVersionInput | MemberCreateWithoutVersionInput[] | MemberUncheckedCreateWithoutVersionInput | MemberUncheckedCreateWithoutVersionInput[] | No |
| connectOrCreate | MemberCreateOrConnectWithoutVersionInput | MemberCreateOrConnectWithoutVersionInput[] | No |
| createMany | MemberCreateManyVersionInputEnvelope | No |
| connect | MemberWhereUniqueInput | MemberWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrganizationCreateWithoutVersionInput | OrganizationCreateWithoutVersionInput[] | OrganizationUncheckedCreateWithoutVersionInput | OrganizationUncheckedCreateWithoutVersionInput[] | No |
| connectOrCreate | OrganizationCreateOrConnectWithoutVersionInput | OrganizationCreateOrConnectWithoutVersionInput[] | No |
| createMany | OrganizationCreateManyVersionInputEnvelope | No |
| connect | OrganizationWhereUniqueInput | OrganizationWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PersonCreateWithoutVersionInput | PersonCreateWithoutVersionInput[] | PersonUncheckedCreateWithoutVersionInput | PersonUncheckedCreateWithoutVersionInput[] | No |
| connectOrCreate | PersonCreateOrConnectWithoutVersionInput | PersonCreateOrConnectWithoutVersionInput[] | No |
| createMany | PersonCreateManyVersionInputEnvelope | No |
| connect | PersonWhereUniqueInput | PersonWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | RequestCreateWithoutVersionInput | RequestCreateWithoutVersionInput[] | RequestUncheckedCreateWithoutVersionInput | RequestUncheckedCreateWithoutVersionInput[] | No |
| connectOrCreate | RequestCreateOrConnectWithoutVersionInput | RequestCreateOrConnectWithoutVersionInput[] | No |
| createMany | RequestCreateManyVersionInputEnvelope | No |
| connect | RequestWhereUniqueInput | RequestWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | SupportCreateWithoutVersionInput | SupportCreateWithoutVersionInput[] | SupportUncheckedCreateWithoutVersionInput | SupportUncheckedCreateWithoutVersionInput[] | No |
| connectOrCreate | SupportCreateOrConnectWithoutVersionInput | SupportCreateOrConnectWithoutVersionInput[] | No |
| createMany | SupportCreateManyVersionInputEnvelope | No |
| connect | SupportWhereUniqueInput | SupportWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TeamCreateWithoutVersionInput | TeamCreateWithoutVersionInput[] | TeamUncheckedCreateWithoutVersionInput | TeamUncheckedCreateWithoutVersionInput[] | No |
| connectOrCreate | TeamCreateOrConnectWithoutVersionInput | TeamCreateOrConnectWithoutVersionInput[] | No |
| createMany | TeamCreateManyVersionInputEnvelope | No |
| connect | TeamWhereUniqueInput | TeamWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutVersionInput | UserCreateWithoutVersionInput[] | UserUncheckedCreateWithoutVersionInput | UserUncheckedCreateWithoutVersionInput[] | No |
| connectOrCreate | UserCreateOrConnectWithoutVersionInput | UserCreateOrConnectWithoutVersionInput[] | No |
| createMany | UserCreateManyVersionInputEnvelope | No |
| connect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserRoleCreateWithoutVersionInput | UserRoleCreateWithoutVersionInput[] | UserRoleUncheckedCreateWithoutVersionInput | UserRoleUncheckedCreateWithoutVersionInput[] | No |
| connectOrCreate | UserRoleCreateOrConnectWithoutVersionInput | UserRoleCreateOrConnectWithoutVersionInput[] | No |
| createMany | UserRoleCreateManyVersionInputEnvelope | No |
| connect | UserRoleWhereUniqueInput | UserRoleWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserSettingsCreateWithoutVersionInput | UserSettingsCreateWithoutVersionInput[] | UserSettingsUncheckedCreateWithoutVersionInput | UserSettingsUncheckedCreateWithoutVersionInput[] | No |
| connectOrCreate | UserSettingsCreateOrConnectWithoutVersionInput | UserSettingsCreateOrConnectWithoutVersionInput[] | No |
| createMany | UserSettingsCreateManyVersionInputEnvelope | No |
| connect | UserSettingsWhereUniqueInput | UserSettingsWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ClubCreateWithoutVersionInput | ClubCreateWithoutVersionInput[] | ClubUncheckedCreateWithoutVersionInput | ClubUncheckedCreateWithoutVersionInput[] | No |
| connectOrCreate | ClubCreateOrConnectWithoutVersionInput | ClubCreateOrConnectWithoutVersionInput[] | No |
| upsert | ClubUpsertWithWhereUniqueWithoutVersionInput | ClubUpsertWithWhereUniqueWithoutVersionInput[] | No |
| createMany | ClubCreateManyVersionInputEnvelope | No |
| set | ClubWhereUniqueInput | ClubWhereUniqueInput[] | No |
| disconnect | ClubWhereUniqueInput | ClubWhereUniqueInput[] | No |
| delete | ClubWhereUniqueInput | ClubWhereUniqueInput[] | No |
| connect | ClubWhereUniqueInput | ClubWhereUniqueInput[] | No |
| update | ClubUpdateWithWhereUniqueWithoutVersionInput | ClubUpdateWithWhereUniqueWithoutVersionInput[] | No |
| updateMany | ClubUpdateManyWithWhereWithoutVersionInput | ClubUpdateManyWithWhereWithoutVersionInput[] | No |
| deleteMany | ClubScalarWhereInput | ClubScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | DeviceCreateWithoutVersionInput | DeviceCreateWithoutVersionInput[] | DeviceUncheckedCreateWithoutVersionInput | DeviceUncheckedCreateWithoutVersionInput[] | No |
| connectOrCreate | DeviceCreateOrConnectWithoutVersionInput | DeviceCreateOrConnectWithoutVersionInput[] | No |
| upsert | DeviceUpsertWithWhereUniqueWithoutVersionInput | DeviceUpsertWithWhereUniqueWithoutVersionInput[] | No |
| createMany | DeviceCreateManyVersionInputEnvelope | No |
| set | DeviceWhereUniqueInput | DeviceWhereUniqueInput[] | No |
| disconnect | DeviceWhereUniqueInput | DeviceWhereUniqueInput[] | No |
| delete | DeviceWhereUniqueInput | DeviceWhereUniqueInput[] | No |
| connect | DeviceWhereUniqueInput | DeviceWhereUniqueInput[] | No |
| update | DeviceUpdateWithWhereUniqueWithoutVersionInput | DeviceUpdateWithWhereUniqueWithoutVersionInput[] | No |
| updateMany | DeviceUpdateManyWithWhereWithoutVersionInput | DeviceUpdateManyWithWhereWithoutVersionInput[] | No |
| deleteMany | DeviceScalarWhereInput | DeviceScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | MemberCreateWithoutVersionInput | MemberCreateWithoutVersionInput[] | MemberUncheckedCreateWithoutVersionInput | MemberUncheckedCreateWithoutVersionInput[] | No |
| connectOrCreate | MemberCreateOrConnectWithoutVersionInput | MemberCreateOrConnectWithoutVersionInput[] | No |
| upsert | MemberUpsertWithWhereUniqueWithoutVersionInput | MemberUpsertWithWhereUniqueWithoutVersionInput[] | No |
| createMany | MemberCreateManyVersionInputEnvelope | No |
| set | MemberWhereUniqueInput | MemberWhereUniqueInput[] | No |
| disconnect | MemberWhereUniqueInput | MemberWhereUniqueInput[] | No |
| delete | MemberWhereUniqueInput | MemberWhereUniqueInput[] | No |
| connect | MemberWhereUniqueInput | MemberWhereUniqueInput[] | No |
| update | MemberUpdateWithWhereUniqueWithoutVersionInput | MemberUpdateWithWhereUniqueWithoutVersionInput[] | No |
| updateMany | MemberUpdateManyWithWhereWithoutVersionInput | MemberUpdateManyWithWhereWithoutVersionInput[] | No |
| deleteMany | MemberScalarWhereInput | MemberScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PersonCreateWithoutVersionInput | PersonCreateWithoutVersionInput[] | PersonUncheckedCreateWithoutVersionInput | PersonUncheckedCreateWithoutVersionInput[] | No |
| connectOrCreate | PersonCreateOrConnectWithoutVersionInput | PersonCreateOrConnectWithoutVersionInput[] | No |
| upsert | PersonUpsertWithWhereUniqueWithoutVersionInput | PersonUpsertWithWhereUniqueWithoutVersionInput[] | No |
| createMany | PersonCreateManyVersionInputEnvelope | No |
| set | PersonWhereUniqueInput | PersonWhereUniqueInput[] | No |
| disconnect | PersonWhereUniqueInput | PersonWhereUniqueInput[] | No |
| delete | PersonWhereUniqueInput | PersonWhereUniqueInput[] | No |
| connect | PersonWhereUniqueInput | PersonWhereUniqueInput[] | No |
| update | PersonUpdateWithWhereUniqueWithoutVersionInput | PersonUpdateWithWhereUniqueWithoutVersionInput[] | No |
| updateMany | PersonUpdateManyWithWhereWithoutVersionInput | PersonUpdateManyWithWhereWithoutVersionInput[] | No |
| deleteMany | PersonScalarWhereInput | PersonScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TeamCreateWithoutVersionInput | TeamCreateWithoutVersionInput[] | TeamUncheckedCreateWithoutVersionInput | TeamUncheckedCreateWithoutVersionInput[] | No |
| connectOrCreate | TeamCreateOrConnectWithoutVersionInput | TeamCreateOrConnectWithoutVersionInput[] | No |
| upsert | TeamUpsertWithWhereUniqueWithoutVersionInput | TeamUpsertWithWhereUniqueWithoutVersionInput[] | No |
| createMany | TeamCreateManyVersionInputEnvelope | No |
| set | TeamWhereUniqueInput | TeamWhereUniqueInput[] | No |
| disconnect | TeamWhereUniqueInput | TeamWhereUniqueInput[] | No |
| delete | TeamWhereUniqueInput | TeamWhereUniqueInput[] | No |
| connect | TeamWhereUniqueInput | TeamWhereUniqueInput[] | No |
| update | TeamUpdateWithWhereUniqueWithoutVersionInput | TeamUpdateWithWhereUniqueWithoutVersionInput[] | No |
| updateMany | TeamUpdateManyWithWhereWithoutVersionInput | TeamUpdateManyWithWhereWithoutVersionInput[] | No |
| deleteMany | TeamScalarWhereInput | TeamScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutVersionInput | UserCreateWithoutVersionInput[] | UserUncheckedCreateWithoutVersionInput | UserUncheckedCreateWithoutVersionInput[] | No |
| connectOrCreate | UserCreateOrConnectWithoutVersionInput | UserCreateOrConnectWithoutVersionInput[] | No |
| upsert | UserUpsertWithWhereUniqueWithoutVersionInput | UserUpsertWithWhereUniqueWithoutVersionInput[] | No |
| createMany | UserCreateManyVersionInputEnvelope | No |
| set | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| disconnect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| delete | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| connect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| update | UserUpdateWithWhereUniqueWithoutVersionInput | UserUpdateWithWhereUniqueWithoutVersionInput[] | No |
| updateMany | UserUpdateManyWithWhereWithoutVersionInput | UserUpdateManyWithWhereWithoutVersionInput[] | No |
| deleteMany | UserScalarWhereInput | UserScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ClubCreateWithoutVersionInput | ClubCreateWithoutVersionInput[] | ClubUncheckedCreateWithoutVersionInput | ClubUncheckedCreateWithoutVersionInput[] | No |
| connectOrCreate | ClubCreateOrConnectWithoutVersionInput | ClubCreateOrConnectWithoutVersionInput[] | No |
| upsert | ClubUpsertWithWhereUniqueWithoutVersionInput | ClubUpsertWithWhereUniqueWithoutVersionInput[] | No |
| createMany | ClubCreateManyVersionInputEnvelope | No |
| set | ClubWhereUniqueInput | ClubWhereUniqueInput[] | No |
| disconnect | ClubWhereUniqueInput | ClubWhereUniqueInput[] | No |
| delete | ClubWhereUniqueInput | ClubWhereUniqueInput[] | No |
| connect | ClubWhereUniqueInput | ClubWhereUniqueInput[] | No |
| update | ClubUpdateWithWhereUniqueWithoutVersionInput | ClubUpdateWithWhereUniqueWithoutVersionInput[] | No |
| updateMany | ClubUpdateManyWithWhereWithoutVersionInput | ClubUpdateManyWithWhereWithoutVersionInput[] | No |
| deleteMany | ClubScalarWhereInput | ClubScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | DeviceCreateWithoutVersionInput | DeviceCreateWithoutVersionInput[] | DeviceUncheckedCreateWithoutVersionInput | DeviceUncheckedCreateWithoutVersionInput[] | No |
| connectOrCreate | DeviceCreateOrConnectWithoutVersionInput | DeviceCreateOrConnectWithoutVersionInput[] | No |
| upsert | DeviceUpsertWithWhereUniqueWithoutVersionInput | DeviceUpsertWithWhereUniqueWithoutVersionInput[] | No |
| createMany | DeviceCreateManyVersionInputEnvelope | No |
| set | DeviceWhereUniqueInput | DeviceWhereUniqueInput[] | No |
| disconnect | DeviceWhereUniqueInput | DeviceWhereUniqueInput[] | No |
| delete | DeviceWhereUniqueInput | DeviceWhereUniqueInput[] | No |
| connect | DeviceWhereUniqueInput | DeviceWhereUniqueInput[] | No |
| update | DeviceUpdateWithWhereUniqueWithoutVersionInput | DeviceUpdateWithWhereUniqueWithoutVersionInput[] | No |
| updateMany | DeviceUpdateManyWithWhereWithoutVersionInput | DeviceUpdateManyWithWhereWithoutVersionInput[] | No |
| deleteMany | DeviceScalarWhereInput | DeviceScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | MemberCreateWithoutVersionInput | MemberCreateWithoutVersionInput[] | MemberUncheckedCreateWithoutVersionInput | MemberUncheckedCreateWithoutVersionInput[] | No |
| connectOrCreate | MemberCreateOrConnectWithoutVersionInput | MemberCreateOrConnectWithoutVersionInput[] | No |
| upsert | MemberUpsertWithWhereUniqueWithoutVersionInput | MemberUpsertWithWhereUniqueWithoutVersionInput[] | No |
| createMany | MemberCreateManyVersionInputEnvelope | No |
| set | MemberWhereUniqueInput | MemberWhereUniqueInput[] | No |
| disconnect | MemberWhereUniqueInput | MemberWhereUniqueInput[] | No |
| delete | MemberWhereUniqueInput | MemberWhereUniqueInput[] | No |
| connect | MemberWhereUniqueInput | MemberWhereUniqueInput[] | No |
| update | MemberUpdateWithWhereUniqueWithoutVersionInput | MemberUpdateWithWhereUniqueWithoutVersionInput[] | No |
| updateMany | MemberUpdateManyWithWhereWithoutVersionInput | MemberUpdateManyWithWhereWithoutVersionInput[] | No |
| deleteMany | MemberScalarWhereInput | MemberScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PersonCreateWithoutVersionInput | PersonCreateWithoutVersionInput[] | PersonUncheckedCreateWithoutVersionInput | PersonUncheckedCreateWithoutVersionInput[] | No |
| connectOrCreate | PersonCreateOrConnectWithoutVersionInput | PersonCreateOrConnectWithoutVersionInput[] | No |
| upsert | PersonUpsertWithWhereUniqueWithoutVersionInput | PersonUpsertWithWhereUniqueWithoutVersionInput[] | No |
| createMany | PersonCreateManyVersionInputEnvelope | No |
| set | PersonWhereUniqueInput | PersonWhereUniqueInput[] | No |
| disconnect | PersonWhereUniqueInput | PersonWhereUniqueInput[] | No |
| delete | PersonWhereUniqueInput | PersonWhereUniqueInput[] | No |
| connect | PersonWhereUniqueInput | PersonWhereUniqueInput[] | No |
| update | PersonUpdateWithWhereUniqueWithoutVersionInput | PersonUpdateWithWhereUniqueWithoutVersionInput[] | No |
| updateMany | PersonUpdateManyWithWhereWithoutVersionInput | PersonUpdateManyWithWhereWithoutVersionInput[] | No |
| deleteMany | PersonScalarWhereInput | PersonScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TeamCreateWithoutVersionInput | TeamCreateWithoutVersionInput[] | TeamUncheckedCreateWithoutVersionInput | TeamUncheckedCreateWithoutVersionInput[] | No |
| connectOrCreate | TeamCreateOrConnectWithoutVersionInput | TeamCreateOrConnectWithoutVersionInput[] | No |
| upsert | TeamUpsertWithWhereUniqueWithoutVersionInput | TeamUpsertWithWhereUniqueWithoutVersionInput[] | No |
| createMany | TeamCreateManyVersionInputEnvelope | No |
| set | TeamWhereUniqueInput | TeamWhereUniqueInput[] | No |
| disconnect | TeamWhereUniqueInput | TeamWhereUniqueInput[] | No |
| delete | TeamWhereUniqueInput | TeamWhereUniqueInput[] | No |
| connect | TeamWhereUniqueInput | TeamWhereUniqueInput[] | No |
| update | TeamUpdateWithWhereUniqueWithoutVersionInput | TeamUpdateWithWhereUniqueWithoutVersionInput[] | No |
| updateMany | TeamUpdateManyWithWhereWithoutVersionInput | TeamUpdateManyWithWhereWithoutVersionInput[] | No |
| deleteMany | TeamScalarWhereInput | TeamScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutVersionInput | UserCreateWithoutVersionInput[] | UserUncheckedCreateWithoutVersionInput | UserUncheckedCreateWithoutVersionInput[] | No |
| connectOrCreate | UserCreateOrConnectWithoutVersionInput | UserCreateOrConnectWithoutVersionInput[] | No |
| upsert | UserUpsertWithWhereUniqueWithoutVersionInput | UserUpsertWithWhereUniqueWithoutVersionInput[] | No |
| createMany | UserCreateManyVersionInputEnvelope | No |
| set | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| disconnect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| delete | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| connect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| update | UserUpdateWithWhereUniqueWithoutVersionInput | UserUpdateWithWhereUniqueWithoutVersionInput[] | No |
| updateMany | UserUpdateManyWithWhereWithoutVersionInput | UserUpdateManyWithWhereWithoutVersionInput[] | No |
| deleteMany | UserScalarWhereInput | UserScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | StringFieldRefInput | Null | Yes |
| in | String | ListStringFieldRefInput | Null | Yes |
| notIn | String | ListStringFieldRefInput | Null | Yes |
| lt | String | StringFieldRefInput | No |
| lte | String | StringFieldRefInput | No |
| gt | String | StringFieldRefInput | No |
| gte | String | StringFieldRefInput | No |
| contains | String | StringFieldRefInput | No |
| startsWith | String | StringFieldRefInput | No |
| endsWith | String | StringFieldRefInput | No |
| not | String | NestedStringNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | BigInt | BigIntFieldRefInput | Null | Yes |
| in | BigInt[] | ListBigIntFieldRefInput | Null | Yes |
| notIn | BigInt[] | ListBigIntFieldRefInput | Null | Yes |
| lt | BigInt | BigIntFieldRefInput | No |
| lte | BigInt | BigIntFieldRefInput | No |
| gt | BigInt | BigIntFieldRefInput | No |
| gte | BigInt | BigIntFieldRefInput | No |
| not | BigInt | NestedBigIntNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | String | StringFieldRefInput | No |
| in | String | ListStringFieldRefInput | No |
| notIn | String | ListStringFieldRefInput | No |
| lt | String | StringFieldRefInput | No |
| lte | String | StringFieldRefInput | No |
| gt | String | StringFieldRefInput | No |
| gte | String | StringFieldRefInput | No |
| contains | String | StringFieldRefInput | No |
| startsWith | String | StringFieldRefInput | No |
| endsWith | String | StringFieldRefInput | No |
| not | String | NestedStringFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | StringFieldRefInput | Null | Yes |
| in | String | ListStringFieldRefInput | Null | Yes |
| notIn | String | ListStringFieldRefInput | Null | Yes |
| lt | String | StringFieldRefInput | No |
| lte | String | StringFieldRefInput | No |
| gt | String | StringFieldRefInput | No |
| gte | String | StringFieldRefInput | No |
| contains | String | StringFieldRefInput | No |
| startsWith | String | StringFieldRefInput | No |
| endsWith | String | StringFieldRefInput | No |
| not | String | NestedStringNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedStringNullableFilter | No |
| _max | NestedStringNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | IntFieldRefInput | Null | Yes |
| in | Int | ListIntFieldRefInput | Null | Yes |
| notIn | Int | ListIntFieldRefInput | Null | Yes |
| lt | Int | IntFieldRefInput | No |
| lte | Int | IntFieldRefInput | No |
| gt | Int | IntFieldRefInput | No |
| gte | Int | IntFieldRefInput | No |
| not | Int | NestedIntNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | BigInt | BigIntFieldRefInput | Null | Yes |
| in | BigInt[] | ListBigIntFieldRefInput | Null | Yes |
| notIn | BigInt[] | ListBigIntFieldRefInput | Null | Yes |
| lt | BigInt | BigIntFieldRefInput | No |
| lte | BigInt | BigIntFieldRefInput | No |
| gt | BigInt | BigIntFieldRefInput | No |
| gte | BigInt | BigIntFieldRefInput | No |
| not | BigInt | NestedBigIntNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _avg | NestedFloatNullableFilter | No |
| _sum | NestedBigIntNullableFilter | No |
| _min | NestedBigIntNullableFilter | No |
| _max | NestedBigIntNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Float | FloatFieldRefInput | Null | Yes |
| in | Float | ListFloatFieldRefInput | Null | Yes |
| notIn | Float | ListFloatFieldRefInput | Null | Yes |
| lt | Float | FloatFieldRefInput | No |
| lte | Float | FloatFieldRefInput | No |
| gt | Float | FloatFieldRefInput | No |
| gte | Float | FloatFieldRefInput | No |
| not | Float | NestedFloatNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | String | StringFieldRefInput | No |
| in | String | ListStringFieldRefInput | No |
| notIn | String | ListStringFieldRefInput | No |
| lt | String | StringFieldRefInput | No |
| lte | String | StringFieldRefInput | No |
| gt | String | StringFieldRefInput | No |
| gte | String | StringFieldRefInput | No |
| contains | String | StringFieldRefInput | No |
| startsWith | String | StringFieldRefInput | No |
| endsWith | String | StringFieldRefInput | No |
| not | String | NestedStringWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedStringFilter | No |
| _max | NestedStringFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | IntFieldRefInput | No |
| in | Int | ListIntFieldRefInput | No |
| notIn | Int | ListIntFieldRefInput | No |
| lt | Int | IntFieldRefInput | No |
| lte | Int | IntFieldRefInput | No |
| gt | Int | IntFieldRefInput | No |
| gte | Int | IntFieldRefInput | No |
| not | Int | NestedIntFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | DateTimeFieldRefInput | No |
| in | DateTime | ListDateTimeFieldRefInput | No |
| notIn | DateTime | ListDateTimeFieldRefInput | No |
| lt | DateTime | DateTimeFieldRefInput | No |
| lte | DateTime | DateTimeFieldRefInput | No |
| gt | DateTime | DateTimeFieldRefInput | No |
| gte | DateTime | DateTimeFieldRefInput | No |
| not | DateTime | NestedDateTimeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | IntFieldRefInput | No |
| in | Int | ListIntFieldRefInput | No |
| notIn | Int | ListIntFieldRefInput | No |
| lt | Int | IntFieldRefInput | No |
| lte | Int | IntFieldRefInput | No |
| gt | Int | IntFieldRefInput | No |
| gte | Int | IntFieldRefInput | No |
| not | Int | NestedIntWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _avg | NestedFloatFilter | No |
| _sum | NestedIntFilter | No |
| _min | NestedIntFilter | No |
| _max | NestedIntFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Float | FloatFieldRefInput | No |
| in | Float | ListFloatFieldRefInput | No |
| notIn | Float | ListFloatFieldRefInput | No |
| lt | Float | FloatFieldRefInput | No |
| lte | Float | FloatFieldRefInput | No |
| gt | Float | FloatFieldRefInput | No |
| gte | Float | FloatFieldRefInput | No |
| not | Float | NestedFloatFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | DateTimeFieldRefInput | No |
| in | DateTime | ListDateTimeFieldRefInput | No |
| notIn | DateTime | ListDateTimeFieldRefInput | No |
| lt | DateTime | DateTimeFieldRefInput | No |
| lte | DateTime | DateTimeFieldRefInput | No |
| gt | DateTime | DateTimeFieldRefInput | No |
| gte | DateTime | DateTimeFieldRefInput | No |
| not | DateTime | NestedDateTimeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedDateTimeFilter | No |
| _max | NestedDateTimeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | IntFieldRefInput | Null | Yes |
| in | Int | ListIntFieldRefInput | Null | Yes |
| notIn | Int | ListIntFieldRefInput | Null | Yes |
| lt | Int | IntFieldRefInput | No |
| lte | Int | IntFieldRefInput | No |
| gt | Int | IntFieldRefInput | No |
| gte | Int | IntFieldRefInput | No |
| not | Int | NestedIntNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _avg | NestedFloatNullableFilter | No |
| _sum | NestedIntNullableFilter | No |
| _min | NestedIntNullableFilter | No |
| _max | NestedIntNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | DateTimeFieldRefInput | Null | Yes |
| in | DateTime | ListDateTimeFieldRefInput | Null | Yes |
| notIn | DateTime | ListDateTimeFieldRefInput | Null | Yes |
| lt | DateTime | DateTimeFieldRefInput | No |
| lte | DateTime | DateTimeFieldRefInput | No |
| gt | DateTime | DateTimeFieldRefInput | No |
| gte | DateTime | DateTimeFieldRefInput | No |
| not | DateTime | NestedDateTimeNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | Json | JsonFieldRefInput | JsonNullValueFilter | No |
| path | String | No |
| string_contains | String | StringFieldRefInput | No |
| string_starts_with | String | StringFieldRefInput | No |
| string_ends_with | String | StringFieldRefInput | No |
| array_contains | Json | JsonFieldRefInput | Null | Yes |
| array_starts_with | Json | JsonFieldRefInput | Null | Yes |
| array_ends_with | Json | JsonFieldRefInput | Null | Yes |
| lt | Json | JsonFieldRefInput | No |
| lte | Json | JsonFieldRefInput | No |
| gt | Json | JsonFieldRefInput | No |
| gte | Json | JsonFieldRefInput | No |
| not | Json | JsonFieldRefInput | JsonNullValueFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | DateTimeFieldRefInput | Null | Yes |
| in | DateTime | ListDateTimeFieldRefInput | Null | Yes |
| notIn | DateTime | ListDateTimeFieldRefInput | Null | Yes |
| lt | DateTime | DateTimeFieldRefInput | No |
| lte | DateTime | DateTimeFieldRefInput | No |
| gt | DateTime | DateTimeFieldRefInput | No |
| gte | DateTime | DateTimeFieldRefInput | No |
| not | DateTime | NestedDateTimeNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedDateTimeNullableFilter | No |
| _max | NestedDateTimeNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Boolean | BooleanFieldRefInput | Null | Yes |
| not | Boolean | NestedBoolNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | FacilityType | EnumFacilityTypeFieldRefInput | Null | Yes |
| in | FacilityType[] | ListEnumFacilityTypeFieldRefInput | Null | Yes |
| notIn | FacilityType[] | ListEnumFacilityTypeFieldRefInput | Null | Yes |
| not | FacilityType | NestedEnumFacilityTypeNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | Boolean | BooleanFieldRefInput | Null | Yes |
| not | Boolean | NestedBoolNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedBoolNullableFilter | No |
| _max | NestedBoolNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Float | FloatFieldRefInput | Null | Yes |
| in | Float | ListFloatFieldRefInput | Null | Yes |
| notIn | Float | ListFloatFieldRefInput | Null | Yes |
| lt | Float | FloatFieldRefInput | No |
| lte | Float | FloatFieldRefInput | No |
| gt | Float | FloatFieldRefInput | No |
| gte | Float | FloatFieldRefInput | No |
| not | Float | NestedFloatNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _avg | NestedFloatNullableFilter | No |
| _sum | NestedFloatNullableFilter | No |
| _min | NestedFloatNullableFilter | No |
| _max | NestedFloatNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | FacilityType | EnumFacilityTypeFieldRefInput | Null | Yes |
| in | FacilityType[] | ListEnumFacilityTypeFieldRefInput | Null | Yes |
| notIn | FacilityType[] | ListEnumFacilityTypeFieldRefInput | Null | Yes |
| not | FacilityType | NestedEnumFacilityTypeNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedEnumFacilityTypeNullableFilter | No |
| _max | NestedEnumFacilityTypeNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Float | FloatFieldRefInput | No |
| in | Float | ListFloatFieldRefInput | No |
| notIn | Float | ListFloatFieldRefInput | No |
| lt | Float | FloatFieldRefInput | No |
| lte | Float | FloatFieldRefInput | No |
| gt | Float | FloatFieldRefInput | No |
| gte | Float | FloatFieldRefInput | No |
| not | Float | NestedFloatWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _avg | NestedFloatFilter | No |
| _sum | NestedFloatFilter | No |
| _min | NestedFloatFilter | No |
| _max | NestedFloatFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | AuthenticationMethod | EnumAuthenticationMethodFieldRefInput | Null | Yes |
| in | AuthenticationMethod[] | ListEnumAuthenticationMethodFieldRefInput | Null | Yes |
| notIn | AuthenticationMethod[] | ListEnumAuthenticationMethodFieldRefInput | Null | Yes |
| not | AuthenticationMethod | NestedEnumAuthenticationMethodNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | AuthenticationMethod | EnumAuthenticationMethodFieldRefInput | Null | Yes |
| in | AuthenticationMethod[] | ListEnumAuthenticationMethodFieldRefInput | Null | Yes |
| notIn | AuthenticationMethod[] | ListEnumAuthenticationMethodFieldRefInput | Null | Yes |
| not | AuthenticationMethod | NestedEnumAuthenticationMethodNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedEnumAuthenticationMethodNullableFilter | No |
| _max | NestedEnumAuthenticationMethodNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | OrgType | EnumOrgTypeFieldRefInput | No |
| in | OrgType[] | ListEnumOrgTypeFieldRefInput | No |
| notIn | OrgType[] | ListEnumOrgTypeFieldRefInput | No |
| not | OrgType | NestedEnumOrgTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | OrgType | EnumOrgTypeFieldRefInput | No |
| in | OrgType[] | ListEnumOrgTypeFieldRefInput | No |
| notIn | OrgType[] | ListEnumOrgTypeFieldRefInput | No |
| not | OrgType | NestedEnumOrgTypeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumOrgTypeFilter | No |
| _max | NestedEnumOrgTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Json | JsonFieldRefInput | JsonNullValueFilter | No |
| path | String | No |
| string_contains | String | StringFieldRefInput | No |
| string_starts_with | String | StringFieldRefInput | No |
| string_ends_with | String | StringFieldRefInput | No |
| array_contains | Json | JsonFieldRefInput | Null | Yes |
| array_starts_with | Json | JsonFieldRefInput | Null | Yes |
| array_ends_with | Json | JsonFieldRefInput | Null | Yes |
| lt | Json | JsonFieldRefInput | No |
| lte | Json | JsonFieldRefInput | No |
| gt | Json | JsonFieldRefInput | No |
| gte | Json | JsonFieldRefInput | No |
| not | Json | JsonFieldRefInput | JsonNullValueFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Language | EnumLanguageFieldRefInput | No |
| in | Language[] | ListEnumLanguageFieldRefInput | No |
| notIn | Language[] | ListEnumLanguageFieldRefInput | No |
| not | Language | NestedEnumLanguageFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | TimeFormat | EnumTimeFormatFieldRefInput | No |
| in | TimeFormat[] | ListEnumTimeFormatFieldRefInput | No |
| notIn | TimeFormat[] | ListEnumTimeFormatFieldRefInput | No |
| not | TimeFormat | NestedEnumTimeFormatFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateFormat | EnumDateFormatFieldRefInput | No |
| in | DateFormat[] | ListEnumDateFormatFieldRefInput | No |
| notIn | DateFormat[] | ListEnumDateFormatFieldRefInput | No |
| not | DateFormat | NestedEnumDateFormatFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Timezone | EnumTimezoneFieldRefInput | No |
| in | Timezone[] | ListEnumTimezoneFieldRefInput | No |
| notIn | Timezone[] | ListEnumTimezoneFieldRefInput | No |
| not | Timezone | NestedEnumTimezoneFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Theme | EnumThemeFieldRefInput | Null | Yes |
| in | Theme[] | ListEnumThemeFieldRefInput | Null | Yes |
| notIn | Theme[] | ListEnumThemeFieldRefInput | Null | Yes |
| not | Theme | NestedEnumThemeNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | Boolean | BooleanFieldRefInput | No |
| not | Boolean | NestedBoolFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Language | EnumLanguageFieldRefInput | No |
| in | Language[] | ListEnumLanguageFieldRefInput | No |
| notIn | Language[] | ListEnumLanguageFieldRefInput | No |
| not | Language | NestedEnumLanguageWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumLanguageFilter | No |
| _max | NestedEnumLanguageFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | TimeFormat | EnumTimeFormatFieldRefInput | No |
| in | TimeFormat[] | ListEnumTimeFormatFieldRefInput | No |
| notIn | TimeFormat[] | ListEnumTimeFormatFieldRefInput | No |
| not | TimeFormat | NestedEnumTimeFormatWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumTimeFormatFilter | No |
| _max | NestedEnumTimeFormatFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateFormat | EnumDateFormatFieldRefInput | No |
| in | DateFormat[] | ListEnumDateFormatFieldRefInput | No |
| notIn | DateFormat[] | ListEnumDateFormatFieldRefInput | No |
| not | DateFormat | NestedEnumDateFormatWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumDateFormatFilter | No |
| _max | NestedEnumDateFormatFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Timezone | EnumTimezoneFieldRefInput | No |
| in | Timezone[] | ListEnumTimezoneFieldRefInput | No |
| notIn | Timezone[] | ListEnumTimezoneFieldRefInput | No |
| not | Timezone | NestedEnumTimezoneWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumTimezoneFilter | No |
| _max | NestedEnumTimezoneFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Theme | EnumThemeFieldRefInput | Null | Yes |
| in | Theme[] | ListEnumThemeFieldRefInput | Null | Yes |
| notIn | Theme[] | ListEnumThemeFieldRefInput | Null | Yes |
| not | Theme | NestedEnumThemeNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedEnumThemeNullableFilter | No |
| _max | NestedEnumThemeNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Boolean | BooleanFieldRefInput | No |
| not | Boolean | NestedBoolWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedBoolFilter | No |
| _max | NestedBoolFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Gender | EnumGenderFieldRefInput | Null | Yes |
| in | Gender[] | ListEnumGenderFieldRefInput | Null | Yes |
| notIn | Gender[] | ListEnumGenderFieldRefInput | Null | Yes |
| not | Gender | NestedEnumGenderNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | Gender | EnumGenderFieldRefInput | Null | Yes |
| in | Gender[] | ListEnumGenderFieldRefInput | Null | Yes |
| notIn | Gender[] | ListEnumGenderFieldRefInput | Null | Yes |
| not | Gender | NestedEnumGenderNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedEnumGenderNullableFilter | No |
| _max | NestedEnumGenderNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | BloodGroup | EnumBloodGroupFieldRefInput | No |
| in | BloodGroup[] | ListEnumBloodGroupFieldRefInput | No |
| notIn | BloodGroup[] | ListEnumBloodGroupFieldRefInput | No |
| not | BloodGroup | NestedEnumBloodGroupFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | BloodGroup | EnumBloodGroupFieldRefInput | No |
| in | BloodGroup[] | ListEnumBloodGroupFieldRefInput | No |
| notIn | BloodGroup[] | ListEnumBloodGroupFieldRefInput | No |
| not | BloodGroup | NestedEnumBloodGroupWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumBloodGroupFilter | No |
| _max | NestedEnumBloodGroupFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | AccountStatus | EnumAccountStatusFieldRefInput | No |
| in | AccountStatus[] | ListEnumAccountStatusFieldRefInput | No |
| notIn | AccountStatus[] | ListEnumAccountStatusFieldRefInput | No |
| not | AccountStatus | NestedEnumAccountStatusFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | AccountStatus | EnumAccountStatusFieldRefInput | No |
| in | AccountStatus[] | ListEnumAccountStatusFieldRefInput | No |
| notIn | AccountStatus[] | ListEnumAccountStatusFieldRefInput | No |
| not | AccountStatus | NestedEnumAccountStatusWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumAccountStatusFilter | No |
| _max | NestedEnumAccountStatusFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| address_line | String | No |
| address_line_1 | String | Null | Yes |
| state | String | No |
| city | String | No |
| zip | String | No |
| phone | String | No |
| phone_1 | String | Null | Yes |
| fax | String | Null | Yes |
| String | Null | Yes | |
| email_1 | String | Null | Yes |
| website | String | Null | Yes |
| social_media | NullableJsonNullValueInput | Json | No |
| version | String | No |
| country | String | Null | Yes |
| person | Int | Null | Yes |
| club | Int | Null | Yes |
| blood_center | Int | Null | Yes |
| donation | Int | Null | Yes |
| hospital | Int | Null | Yes |
| BloodCenter_BloodCenter_contactToContact | BloodCenterUncheckedCreateNestedManyWithoutContact_BloodCenter_contactToContactInput | No |
| Club_Club_contactToContact | ClubUncheckedCreateNestedManyWithoutContact_Club_contactToContactInput | No |
| Hospital_Hospital_contactToContact | HospitalUncheckedCreateNestedManyWithoutContact_Hospital_contactToContactInput | No |
| Person_Person_contact_idToContact | PersonUncheckedCreateNestedManyWithoutContact_Person_contact_idToContactInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ContactWhereUniqueInput | No |
| create | ContactCreateWithoutAmbulanceInput | ContactUncheckedCreateWithoutAmbulanceInput | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | No |
| updated_at | DateTime | No |
| org_type | OrgType | No |
| org_id | Int | No |
| Volunteer | JsonNullValueInput | Json | No |
| Donation | DonationCreateNestedManyWithoutOrganizationInput | No |
| Club | ClubCreateNestedOneWithoutOrganizationInput | No |
| OrganizationSettings | OrganizationSettingsCreateNestedOneWithoutOrganizationInput | No |
| Person | PersonCreateNestedOneWithoutOrganizationInput | No |
| Version | VersionCreateNestedOneWithoutOrganizationInput | No |
| Support | SupportCreateNestedManyWithoutOrganizationInput | No |
| SupportMessage | SupportMessageCreateNestedManyWithoutOrganizationInput | No |
| Team | TeamCreateNestedManyWithoutOrganizationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| org_type | OrgType | No |
| org_id | Int | No |
| Volunteer | JsonNullValueInput | Json | No |
| personId | Int | No |
| organizationSettingsId | Int | No |
| clubId | Int | Null | Yes |
| version | String | No |
| Donation | DonationUncheckedCreateNestedManyWithoutOrganizationInput | No |
| Support | SupportUncheckedCreateNestedManyWithoutOrganizationInput | No |
| SupportMessage | SupportMessageUncheckedCreateNestedManyWithoutOrganizationInput | No |
| Team | TeamUncheckedCreateNestedManyWithoutOrganizationInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrganizationWhereUniqueInput | No |
| create | OrganizationCreateWithoutAmbulanceInput | OrganizationUncheckedCreateWithoutAmbulanceInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PersonWhereUniqueInput | No |
| create | PersonCreateWithoutAmbulanceInput | PersonUncheckedCreateWithoutAmbulanceInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | VersionWhereUniqueInput | No |
| create | VersionCreateWithoutAmbulanceInput | VersionUncheckedCreateWithoutAmbulanceInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | ContactUpdateWithoutAmbulanceInput | ContactUncheckedUpdateWithoutAmbulanceInput | No |
| create | ContactCreateWithoutAmbulanceInput | ContactUncheckedCreateWithoutAmbulanceInput | No |
| where | ContactWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ContactWhereInput | No |
| data | ContactUpdateWithoutAmbulanceInput | ContactUncheckedUpdateWithoutAmbulanceInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | OrganizationUpdateWithoutAmbulanceInput | OrganizationUncheckedUpdateWithoutAmbulanceInput | No |
| create | OrganizationCreateWithoutAmbulanceInput | OrganizationUncheckedCreateWithoutAmbulanceInput | No |
| where | OrganizationWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrganizationWhereInput | No |
| data | OrganizationUpdateWithoutAmbulanceInput | OrganizationUncheckedUpdateWithoutAmbulanceInput | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| org_type | OrgType | EnumOrgTypeFieldUpdateOperationsInput | No |
| org_id | Int | IntFieldUpdateOperationsInput | No |
| Volunteer | JsonNullValueInput | Json | No |
| Donation | DonationUpdateManyWithoutOrganizationNestedInput | No |
| Club | ClubUpdateOneWithoutOrganizationNestedInput | No |
| OrganizationSettings | OrganizationSettingsUpdateOneRequiredWithoutOrganizationNestedInput | No |
| Person | PersonUpdateOneRequiredWithoutOrganizationNestedInput | No |
| Version | VersionUpdateOneRequiredWithoutOrganizationNestedInput | No |
| Support | SupportUpdateManyWithoutOrganizationNestedInput | No |
| SupportMessage | SupportMessageUpdateManyWithoutOrganizationNestedInput | No |
| Team | TeamUpdateManyWithoutOrganizationNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| org_type | OrgType | EnumOrgTypeFieldUpdateOperationsInput | No |
| org_id | Int | IntFieldUpdateOperationsInput | No |
| Volunteer | JsonNullValueInput | Json | No |
| personId | Int | IntFieldUpdateOperationsInput | No |
| organizationSettingsId | Int | IntFieldUpdateOperationsInput | No |
| clubId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| version | String | StringFieldUpdateOperationsInput | No |
| Donation | DonationUncheckedUpdateManyWithoutOrganizationNestedInput | No |
| Support | SupportUncheckedUpdateManyWithoutOrganizationNestedInput | No |
| SupportMessage | SupportMessageUncheckedUpdateManyWithoutOrganizationNestedInput | No |
| Team | TeamUncheckedUpdateManyWithoutOrganizationNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | PersonUpdateWithoutAmbulanceInput | PersonUncheckedUpdateWithoutAmbulanceInput | No |
| create | PersonCreateWithoutAmbulanceInput | PersonUncheckedCreateWithoutAmbulanceInput | No |
| where | PersonWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PersonWhereInput | No |
| data | PersonUpdateWithoutAmbulanceInput | PersonUncheckedUpdateWithoutAmbulanceInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | VersionUpdateWithoutAmbulanceInput | VersionUncheckedUpdateWithoutAmbulanceInput | No |
| create | VersionCreateWithoutAmbulanceInput | VersionUncheckedCreateWithoutAmbulanceInput | No |
| where | VersionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | VersionWhereInput | No |
| data | VersionUpdateWithoutAmbulanceInput | VersionUncheckedUpdateWithoutAmbulanceInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| address_line | String | No |
| address_line_1 | String | Null | Yes |
| state | String | No |
| city | String | No |
| zip | String | No |
| phone | String | No |
| phone_1 | String | Null | Yes |
| fax | String | Null | Yes |
| String | Null | Yes | |
| email_1 | String | Null | Yes |
| website | String | Null | Yes |
| social_media | NullableJsonNullValueInput | Json | No |
| version | String | No |
| country | String | Null | Yes |
| person | Int | Null | Yes |
| club | Int | Null | Yes |
| blood_center | Int | Null | Yes |
| donation | Int | Null | Yes |
| hospital | Int | Null | Yes |
| Ambulance | AmbulanceUncheckedCreateNestedManyWithoutContactInput | No |
| Club_Club_contactToContact | ClubUncheckedCreateNestedManyWithoutContact_Club_contactToContactInput | No |
| Hospital_Hospital_contactToContact | HospitalUncheckedCreateNestedManyWithoutContact_Hospital_contactToContactInput | No |
| Person_Person_contact_idToContact | PersonUncheckedCreateNestedManyWithoutContact_Person_contact_idToContactInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ContactWhereUniqueInput | No |
| create | ContactCreateWithoutBloodCenter_BloodCenter_contactToContactInput | ContactUncheckedCreateWithoutBloodCenter_BloodCenter_contactToContactInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PersonWhereUniqueInput | No |
| create | PersonCreateWithoutBloodCenterInput | PersonUncheckedCreateWithoutBloodCenterInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | VersionWhereUniqueInput | No |
| create | VersionCreateWithoutBloodCenterInput | VersionUncheckedCreateWithoutBloodCenterInput | No |
| Name | Type | Nullable |
|---|---|---|
| amount | Int | No |
| donated_at | DateTime | No |
| referred_by | String | Null | Yes |
| test_done | NullableJsonNullValueInput | Json | No |
| bags | BloodDonationCreatebagsInput | String | No |
| media_done | String | Null | Yes |
| media_used | String | Null | Yes |
| incubation | String | Null | Yes |
| note | String | Null | Yes |
| created_at | DateTime | Null | Yes |
| updated_at | DateTime | Null | Yes |
| cabin_no | String | Null | Yes |
| reg_no | String | Null | Yes |
| Person | PersonCreateNestedOneWithoutBloodDonationInput | No |
| Version | VersionCreateNestedOneWithoutBloodDonationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| donor_id | Int | No |
| amount | Int | No |
| version | String | No |
| donated_at | DateTime | No |
| referred_by | String | Null | Yes |
| test_done | NullableJsonNullValueInput | Json | No |
| bags | BloodDonationCreatebagsInput | String | No |
| media_done | String | Null | Yes |
| media_used | String | Null | Yes |
| incubation | String | Null | Yes |
| note | String | Null | Yes |
| created_at | DateTime | Null | Yes |
| updated_at | DateTime | Null | Yes |
| cabin_no | String | Null | Yes |
| reg_no | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | BloodDonationWhereUniqueInput | No |
| create | BloodDonationCreateWithoutBloodCenterInput | BloodDonationUncheckedCreateWithoutBloodCenterInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | BloodDonationCreateManyBloodCenterInput | BloodDonationCreateManyBloodCenterInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| address_line | String | No |
| address_line_1 | String | Null | Yes |
| state | String | No |
| city | String | No |
| zip | String | No |
| phone | String | No |
| phone_1 | String | Null | Yes |
| fax | String | Null | Yes |
| String | Null | Yes | |
| email_1 | String | Null | Yes |
| website | String | Null | Yes |
| social_media | NullableJsonNullValueInput | Json | No |
| version | String | No |
| country | String | Null | Yes |
| person | Int | Null | Yes |
| club | Int | Null | Yes |
| donation | Int | Null | Yes |
| hospital | Int | Null | Yes |
| Ambulance | AmbulanceUncheckedCreateNestedManyWithoutContactInput | No |
| BloodCenter_BloodCenter_contactToContact | BloodCenterUncheckedCreateNestedManyWithoutContact_BloodCenter_contactToContactInput | No |
| Club_Club_contactToContact | ClubUncheckedCreateNestedManyWithoutContact_Club_contactToContactInput | No |
| Hospital_Hospital_contactToContact | HospitalUncheckedCreateNestedManyWithoutContact_Hospital_contactToContactInput | No |
| Person_Person_contact_idToContact | PersonUncheckedCreateNestedManyWithoutContact_Person_contact_idToContactInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | ContactCreateManyBloodCenter_Contact_blood_centerToBloodCenterInput | ContactCreateManyBloodCenter_Contact_blood_centerToBloodCenterInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | ContactWhereInput | No |
| data | ContactUpdateWithoutBloodCenter_BloodCenter_contactToContactInput | ContactUncheckedUpdateWithoutBloodCenter_BloodCenter_contactToContactInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | PersonUpdateWithoutBloodCenterInput | PersonUncheckedUpdateWithoutBloodCenterInput | No |
| create | PersonCreateWithoutBloodCenterInput | PersonUncheckedCreateWithoutBloodCenterInput | No |
| where | PersonWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PersonWhereInput | No |
| data | PersonUpdateWithoutBloodCenterInput | PersonUncheckedUpdateWithoutBloodCenterInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | VersionUpdateWithoutBloodCenterInput | VersionUncheckedUpdateWithoutBloodCenterInput | No |
| create | VersionCreateWithoutBloodCenterInput | VersionUncheckedCreateWithoutBloodCenterInput | No |
| where | VersionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | VersionWhereInput | No |
| data | VersionUpdateWithoutBloodCenterInput | VersionUncheckedUpdateWithoutBloodCenterInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BloodDonationWhereUniqueInput | No |
| update | BloodDonationUpdateWithoutBloodCenterInput | BloodDonationUncheckedUpdateWithoutBloodCenterInput | No |
| create | BloodDonationCreateWithoutBloodCenterInput | BloodDonationUncheckedCreateWithoutBloodCenterInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BloodDonationWhereUniqueInput | No |
| data | BloodDonationUpdateWithoutBloodCenterInput | BloodDonationUncheckedUpdateWithoutBloodCenterInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BloodDonationScalarWhereInput | No |
| data | BloodDonationUpdateManyMutationInput | BloodDonationUncheckedUpdateManyWithoutBloodCenterInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | BloodDonationScalarWhereInput | BloodDonationScalarWhereInput[] | No |
| OR | BloodDonationScalarWhereInput[] | No |
| NOT | BloodDonationScalarWhereInput | BloodDonationScalarWhereInput[] | No |
| id | IntFilter | Int | No |
| donor_id | IntFilter | Int | No |
| organization_id | IntFilter | Int | No |
| amount | IntFilter | Int | No |
| version | StringFilter | String | No |
| donated_at | DateTimeFilter | DateTime | No |
| referred_by | StringNullableFilter | String | Null | Yes |
| test_done | JsonNullableFilter | No |
| bags | StringNullableListFilter | No |
| media_done | StringNullableFilter | String | Null | Yes |
| media_used | StringNullableFilter | String | Null | Yes |
| incubation | StringNullableFilter | String | Null | Yes |
| note | StringNullableFilter | String | Null | Yes |
| created_at | DateTimeNullableFilter | DateTime | Null | Yes |
| updated_at | DateTimeNullableFilter | DateTime | Null | Yes |
| cabin_no | StringNullableFilter | String | Null | Yes |
| reg_no | StringNullableFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | ContactScalarWhereInput | No |
| data | ContactUpdateManyMutationInput | ContactUncheckedUpdateManyWithoutBloodCenter_Contact_blood_centerToBloodCenterInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ContactScalarWhereInput | ContactScalarWhereInput[] | No |
| OR | ContactScalarWhereInput[] | No |
| NOT | ContactScalarWhereInput | ContactScalarWhereInput[] | No |
| id | IntFilter | Int | No |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| address_line | StringFilter | String | No |
| address_line_1 | StringNullableFilter | String | Null | Yes |
| state | StringFilter | String | No |
| city | StringFilter | String | No |
| zip | StringFilter | String | No |
| phone | StringFilter | String | No |
| phone_1 | StringNullableFilter | String | Null | Yes |
| fax | StringNullableFilter | String | Null | Yes |
| StringNullableFilter | String | Null | Yes | |
| email_1 | StringNullableFilter | String | Null | Yes |
| website | StringNullableFilter | String | Null | Yes |
| social_media | JsonNullableFilter | No |
| version | StringFilter | String | No |
| country | StringNullableFilter | String | Null | Yes |
| person | IntNullableFilter | Int | Null | Yes |
| club | IntNullableFilter | Int | Null | Yes |
| blood_center | IntNullableFilter | Int | Null | Yes |
| donation | IntNullableFilter | Int | Null | Yes |
| hospital | IntNullableFilter | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | No |
| updated_at | DateTime | No |
| established_at | DateTime | No |
| title | String | No |
| Contact_BloodCenter_contactToContact | ContactCreateNestedOneWithoutBloodCenter_BloodCenter_contactToContactInput | No |
| Person | PersonCreateNestedOneWithoutBloodCenterInput | No |
| Version | VersionCreateNestedOneWithoutBloodCenterInput | No |
| Contact_Contact_blood_centerToBloodCenter | ContactCreateNestedManyWithoutBloodCenter_Contact_blood_centerToBloodCenterInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| established_at | DateTime | No |
| version | String | No |
| founder | Int | No |
| contact | Int | Null | Yes |
| title | String | No |
| Contact_Contact_blood_centerToBloodCenter | ContactUncheckedCreateNestedManyWithoutBloodCenter_Contact_blood_centerToBloodCenterInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BloodCenterWhereUniqueInput | No |
| create | BloodCenterCreateWithoutBloodDonationInput | BloodCenterUncheckedCreateWithoutBloodDonationInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PersonWhereUniqueInput | No |
| create | PersonCreateWithoutBloodDonationInput | PersonUncheckedCreateWithoutBloodDonationInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | VersionWhereUniqueInput | No |
| create | VersionCreateWithoutBloodDonationInput | VersionUncheckedCreateWithoutBloodDonationInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | BloodCenterUpdateWithoutBloodDonationInput | BloodCenterUncheckedUpdateWithoutBloodDonationInput | No |
| create | BloodCenterCreateWithoutBloodDonationInput | BloodCenterUncheckedCreateWithoutBloodDonationInput | No |
| where | BloodCenterWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BloodCenterWhereInput | No |
| data | BloodCenterUpdateWithoutBloodDonationInput | BloodCenterUncheckedUpdateWithoutBloodDonationInput | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| established_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| Contact_BloodCenter_contactToContact | ContactUpdateOneWithoutBloodCenter_BloodCenter_contactToContactNestedInput | No |
| Person | PersonUpdateOneRequiredWithoutBloodCenterNestedInput | No |
| Version | VersionUpdateOneRequiredWithoutBloodCenterNestedInput | No |
| Contact_Contact_blood_centerToBloodCenter | ContactUpdateManyWithoutBloodCenter_Contact_blood_centerToBloodCenterNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| established_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| founder | Int | IntFieldUpdateOperationsInput | No |
| contact | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| title | String | StringFieldUpdateOperationsInput | No |
| Contact_Contact_blood_centerToBloodCenter | ContactUncheckedUpdateManyWithoutBloodCenter_Contact_blood_centerToBloodCenterNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | PersonUpdateWithoutBloodDonationInput | PersonUncheckedUpdateWithoutBloodDonationInput | No |
| create | PersonCreateWithoutBloodDonationInput | PersonUncheckedCreateWithoutBloodDonationInput | No |
| where | PersonWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PersonWhereInput | No |
| data | PersonUpdateWithoutBloodDonationInput | PersonUncheckedUpdateWithoutBloodDonationInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | VersionUpdateWithoutBloodDonationInput | VersionUncheckedUpdateWithoutBloodDonationInput | No |
| create | VersionCreateWithoutBloodDonationInput | VersionUncheckedCreateWithoutBloodDonationInput | No |
| where | VersionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | VersionWhereInput | No |
| data | VersionUpdateWithoutBloodDonationInput | VersionUncheckedUpdateWithoutBloodDonationInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PersonWhereUniqueInput | No |
| create | PersonCreateWithoutClub_Club_chairmanToPersonInput | PersonUncheckedCreateWithoutClub_Club_chairmanToPersonInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| address_line | String | No |
| address_line_1 | String | Null | Yes |
| state | String | No |
| city | String | No |
| zip | String | No |
| phone | String | No |
| phone_1 | String | Null | Yes |
| fax | String | Null | Yes |
| String | Null | Yes | |
| email_1 | String | Null | Yes |
| website | String | Null | Yes |
| social_media | NullableJsonNullValueInput | Json | No |
| version | String | No |
| country | String | Null | Yes |
| person | Int | Null | Yes |
| club | Int | Null | Yes |
| blood_center | Int | Null | Yes |
| donation | Int | Null | Yes |
| hospital | Int | Null | Yes |
| Ambulance | AmbulanceUncheckedCreateNestedManyWithoutContactInput | No |
| BloodCenter_BloodCenter_contactToContact | BloodCenterUncheckedCreateNestedManyWithoutContact_BloodCenter_contactToContactInput | No |
| Hospital_Hospital_contactToContact | HospitalUncheckedCreateNestedManyWithoutContact_Hospital_contactToContactInput | No |
| Person_Person_contact_idToContact | PersonUncheckedCreateNestedManyWithoutContact_Person_contact_idToContactInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ContactWhereUniqueInput | No |
| create | ContactCreateWithoutClub_Club_contactToContactInput | ContactUncheckedCreateWithoutClub_Club_contactToContactInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PersonWhereUniqueInput | No |
| create | PersonCreateWithoutClub_Club_founderToPersonInput | PersonUncheckedCreateWithoutClub_Club_founderToPersonInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | VersionWhereUniqueInput | No |
| create | VersionCreateWithoutClubInput | VersionUncheckedCreateWithoutClubInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PersonWhereUniqueInput | No |
| create | PersonCreateWithoutClub_Club_vice_chairmanToPersonInput | PersonUncheckedCreateWithoutClub_Club_vice_chairmanToPersonInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| address_line | String | No |
| address_line_1 | String | Null | Yes |
| state | String | No |
| city | String | No |
| zip | String | No |
| phone | String | No |
| phone_1 | String | Null | Yes |
| fax | String | Null | Yes |
| String | Null | Yes | |
| email_1 | String | Null | Yes |
| website | String | Null | Yes |
| social_media | NullableJsonNullValueInput | Json | No |
| version | String | No |
| country | String | Null | Yes |
| person | Int | Null | Yes |
| blood_center | Int | Null | Yes |
| donation | Int | Null | Yes |
| hospital | Int | Null | Yes |
| Ambulance | AmbulanceUncheckedCreateNestedManyWithoutContactInput | No |
| BloodCenter_BloodCenter_contactToContact | BloodCenterUncheckedCreateNestedManyWithoutContact_BloodCenter_contactToContactInput | No |
| Club_Club_contactToContact | ClubUncheckedCreateNestedManyWithoutContact_Club_contactToContactInput | No |
| Hospital_Hospital_contactToContact | HospitalUncheckedCreateNestedManyWithoutContact_Hospital_contactToContactInput | No |
| Person_Person_contact_idToContact | PersonUncheckedCreateNestedManyWithoutContact_Person_contact_idToContactInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ContactWhereUniqueInput | No |
| create | ContactCreateWithoutClub_Contact_clubToClubInput | ContactUncheckedCreateWithoutClub_Contact_clubToClubInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | ContactCreateManyClub_Contact_clubToClubInput | ContactCreateManyClub_Contact_clubToClubInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | No |
| updated_at | DateTime | No |
| allergies | String | Null | Yes |
| complications | String | Null | Yes |
| medications | String | Null | Yes |
| blood_disorders | String | Null | Yes |
| infectious_diseases | String | Null | Yes |
| last_blood_donation | DateTime | Null | Yes |
| medical_conditions | String | Null | Yes |
| Donation | DonationCreateNestedManyWithoutMemberInput | No |
| Person | PersonCreateNestedOneWithoutMemberInput | No |
| Version | VersionCreateNestedOneWithoutMemberInput | No |
| Request | RequestCreateNestedManyWithoutMemberInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| version | String | No |
| allergies | String | Null | Yes |
| complications | String | Null | Yes |
| medications | String | Null | Yes |
| blood_disorders | String | Null | Yes |
| infectious_diseases | String | Null | Yes |
| last_blood_donation | DateTime | Null | Yes |
| medical_conditions | String | Null | Yes |
| person_id | Int | Null | Yes |
| Donation | DonationUncheckedCreateNestedManyWithoutMemberInput | No |
| Request | RequestUncheckedCreateNestedManyWithoutMemberInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | MemberWhereUniqueInput | No |
| create | MemberCreateWithoutClubInput | MemberUncheckedCreateWithoutClubInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | MemberCreateManyClubInput | MemberCreateManyClubInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | No |
| updated_at | DateTime | No |
| org_type | OrgType | No |
| org_id | Int | No |
| Volunteer | JsonNullValueInput | Json | No |
| Ambulance | AmbulanceCreateNestedManyWithoutOrganizationInput | No |
| Donation | DonationCreateNestedManyWithoutOrganizationInput | No |
| OrganizationSettings | OrganizationSettingsCreateNestedOneWithoutOrganizationInput | No |
| Person | PersonCreateNestedOneWithoutOrganizationInput | No |
| Version | VersionCreateNestedOneWithoutOrganizationInput | No |
| Support | SupportCreateNestedManyWithoutOrganizationInput | No |
| SupportMessage | SupportMessageCreateNestedManyWithoutOrganizationInput | No |
| Team | TeamCreateNestedManyWithoutOrganizationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| org_type | OrgType | No |
| org_id | Int | No |
| Volunteer | JsonNullValueInput | Json | No |
| personId | Int | No |
| organizationSettingsId | Int | No |
| version | String | No |
| Ambulance | AmbulanceUncheckedCreateNestedManyWithoutOrganizationInput | No |
| Donation | DonationUncheckedCreateNestedManyWithoutOrganizationInput | No |
| Support | SupportUncheckedCreateNestedManyWithoutOrganizationInput | No |
| SupportMessage | SupportMessageUncheckedCreateNestedManyWithoutOrganizationInput | No |
| Team | TeamUncheckedCreateNestedManyWithoutOrganizationInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrganizationWhereUniqueInput | No |
| create | OrganizationCreateWithoutClubInput | OrganizationUncheckedCreateWithoutClubInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | OrganizationCreateManyClubInput | OrganizationCreateManyClubInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | PersonWhereInput | No |
| data | PersonUpdateWithoutClub_Club_chairmanToPersonInput | PersonUncheckedUpdateWithoutClub_Club_chairmanToPersonInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ContactWhereInput | No |
| data | ContactUpdateWithoutClub_Club_contactToContactInput | ContactUncheckedUpdateWithoutClub_Club_contactToContactInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PersonWhereInput | No |
| data | PersonUpdateWithoutClub_Club_founderToPersonInput | PersonUncheckedUpdateWithoutClub_Club_founderToPersonInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | VersionUpdateWithoutClubInput | VersionUncheckedUpdateWithoutClubInput | No |
| create | VersionCreateWithoutClubInput | VersionUncheckedCreateWithoutClubInput | No |
| where | VersionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | VersionWhereInput | No |
| data | VersionUpdateWithoutClubInput | VersionUncheckedUpdateWithoutClubInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PersonWhereInput | No |
| data | PersonUpdateWithoutClub_Club_vice_chairmanToPersonInput | PersonUncheckedUpdateWithoutClub_Club_vice_chairmanToPersonInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ContactWhereUniqueInput | No |
| data | ContactUpdateWithoutClub_Contact_clubToClubInput | ContactUncheckedUpdateWithoutClub_Contact_clubToClubInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ContactScalarWhereInput | No |
| data | ContactUpdateManyMutationInput | ContactUncheckedUpdateManyWithoutClub_Contact_clubToClubInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | MemberWhereUniqueInput | No |
| update | MemberUpdateWithoutClubInput | MemberUncheckedUpdateWithoutClubInput | No |
| create | MemberCreateWithoutClubInput | MemberUncheckedCreateWithoutClubInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | MemberWhereUniqueInput | No |
| data | MemberUpdateWithoutClubInput | MemberUncheckedUpdateWithoutClubInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | MemberScalarWhereInput | No |
| data | MemberUpdateManyMutationInput | MemberUncheckedUpdateManyWithoutClubInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | MemberScalarWhereInput | MemberScalarWhereInput[] | No |
| OR | MemberScalarWhereInput[] | No |
| NOT | MemberScalarWhereInput | MemberScalarWhereInput[] | No |
| id | IntFilter | Int | No |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| version | StringFilter | String | No |
| allergies | StringNullableFilter | String | Null | Yes |
| complications | StringNullableFilter | String | Null | Yes |
| medications | StringNullableFilter | String | Null | Yes |
| blood_disorders | StringNullableFilter | String | Null | Yes |
| club_id | IntNullableFilter | Int | Null | Yes |
| infectious_diseases | StringNullableFilter | String | Null | Yes |
| last_blood_donation | DateTimeNullableFilter | DateTime | Null | Yes |
| medical_conditions | StringNullableFilter | String | Null | Yes |
| person_id | IntNullableFilter | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | OrganizationWhereUniqueInput | No |
| update | OrganizationUpdateWithoutClubInput | OrganizationUncheckedUpdateWithoutClubInput | No |
| create | OrganizationCreateWithoutClubInput | OrganizationUncheckedCreateWithoutClubInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrganizationWhereUniqueInput | No |
| data | OrganizationUpdateWithoutClubInput | OrganizationUncheckedUpdateWithoutClubInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrganizationScalarWhereInput | No |
| data | OrganizationUpdateManyMutationInput | OrganizationUncheckedUpdateManyWithoutClubInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | OrganizationScalarWhereInput | OrganizationScalarWhereInput[] | No |
| OR | OrganizationScalarWhereInput[] | No |
| NOT | OrganizationScalarWhereInput | OrganizationScalarWhereInput[] | No |
| id | IntFilter | Int | No |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| org_type | EnumOrgTypeFilter | OrgType | No |
| org_id | IntFilter | Int | No |
| Volunteer | JsonFilter | No |
| personId | IntFilter | Int | No |
| organizationSettingsId | IntFilter | Int | No |
| clubId | IntNullableFilter | Int | Null | Yes |
| version | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | No |
| updated_at | DateTime | No |
| vehicle_number | String | No |
| ambulance_type | String | Null | Yes |
| equipment | AmbulanceCreateequipmentInput | String | No |
| color | String | Null | Yes |
| Organization | OrganizationCreateNestedOneWithoutAmbulanceInput | No |
| Person | PersonCreateNestedOneWithoutAmbulanceInput | No |
| Version | VersionCreateNestedOneWithoutAmbulanceInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| vehicle_number | String | No |
| ambulance_type | String | Null | Yes |
| person | Int | No |
| version | String | No |
| organization | Int | Null | Yes |
| equipment | AmbulanceCreateequipmentInput | String | No |
| color | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | AmbulanceWhereUniqueInput | No |
| create | AmbulanceCreateWithoutContactInput | AmbulanceUncheckedCreateWithoutContactInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | AmbulanceCreateManyContactInput | AmbulanceCreateManyContactInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | No |
| updated_at | DateTime | No |
| established_at | DateTime | No |
| title | String | No |
| Person | PersonCreateNestedOneWithoutBloodCenterInput | No |
| Version | VersionCreateNestedOneWithoutBloodCenterInput | No |
| BloodDonation | BloodDonationCreateNestedManyWithoutBloodCenterInput | No |
| Contact_Contact_blood_centerToBloodCenter | ContactCreateNestedManyWithoutBloodCenter_Contact_blood_centerToBloodCenterInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| established_at | DateTime | No |
| version | String | No |
| founder | Int | No |
| title | String | No |
| BloodDonation | BloodDonationUncheckedCreateNestedManyWithoutBloodCenterInput | No |
| Contact_Contact_blood_centerToBloodCenter | ContactUncheckedCreateNestedManyWithoutBloodCenter_Contact_blood_centerToBloodCenterInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BloodCenterWhereUniqueInput | No |
| create | BloodCenterCreateWithoutContact_BloodCenter_contactToContactInput | BloodCenterUncheckedCreateWithoutContact_BloodCenter_contactToContactInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | BloodCenterCreateManyContact_BloodCenter_contactToContactInput | BloodCenterCreateManyContact_BloodCenter_contactToContactInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | No |
| updated_at | DateTime | No |
| name | String | No |
| established_at | DateTime | No |
| Person_Club_chairmanToPerson | PersonCreateNestedOneWithoutClub_Club_chairmanToPersonInput | No |
| Person_Club_founderToPerson | PersonCreateNestedOneWithoutClub_Club_founderToPersonInput | No |
| Version | VersionCreateNestedOneWithoutClubInput | No |
| Person_Club_vice_chairmanToPerson | PersonCreateNestedOneWithoutClub_Club_vice_chairmanToPersonInput | No |
| Contact_Contact_clubToClub | ContactCreateNestedManyWithoutClub_Contact_clubToClubInput | No |
| Member | MemberCreateNestedManyWithoutClubInput | No |
| Organization | OrganizationCreateNestedManyWithoutClubInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| name | String | No |
| established_at | DateTime | No |
| version | String | No |
| chairman | Int | No |
| founder | Int | No |
| vice_chairman | Int | No |
| Contact_Contact_clubToClub | ContactUncheckedCreateNestedManyWithoutClub_Contact_clubToClubInput | No |
| Member | MemberUncheckedCreateNestedManyWithoutClubInput | No |
| Organization | OrganizationUncheckedCreateNestedManyWithoutClubInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ClubWhereUniqueInput | No |
| create | ClubCreateWithoutContact_Club_contactToContactInput | ClubUncheckedCreateWithoutContact_Club_contactToContactInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | ClubCreateManyContact_Club_contactToContactInput | ClubCreateManyContact_Club_contactToContactInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | No |
| updated_at | DateTime | No |
| established_at | DateTime | No |
| title | String | No |
| Contact_BloodCenter_contactToContact | ContactCreateNestedOneWithoutBloodCenter_BloodCenter_contactToContactInput | No |
| Person | PersonCreateNestedOneWithoutBloodCenterInput | No |
| Version | VersionCreateNestedOneWithoutBloodCenterInput | No |
| BloodDonation | BloodDonationCreateNestedManyWithoutBloodCenterInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| established_at | DateTime | No |
| version | String | No |
| founder | Int | No |
| contact | Int | Null | Yes |
| title | String | No |
| BloodDonation | BloodDonationUncheckedCreateNestedManyWithoutBloodCenterInput | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | No |
| updated_at | DateTime | No |
| name | String | No |
| established_at | DateTime | No |
| Person_Club_chairmanToPerson | PersonCreateNestedOneWithoutClub_Club_chairmanToPersonInput | No |
| Contact_Club_contactToContact | ContactCreateNestedOneWithoutClub_Club_contactToContactInput | No |
| Person_Club_founderToPerson | PersonCreateNestedOneWithoutClub_Club_founderToPersonInput | No |
| Version | VersionCreateNestedOneWithoutClubInput | No |
| Person_Club_vice_chairmanToPerson | PersonCreateNestedOneWithoutClub_Club_vice_chairmanToPersonInput | No |
| Member | MemberCreateNestedManyWithoutClubInput | No |
| Organization | OrganizationCreateNestedManyWithoutClubInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| name | String | No |
| established_at | DateTime | No |
| contact | Int | No |
| version | String | No |
| chairman | Int | No |
| founder | Int | No |
| vice_chairman | Int | No |
| Member | MemberUncheckedCreateNestedManyWithoutClubInput | No |
| Organization | OrganizationUncheckedCreateNestedManyWithoutClubInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ClubWhereUniqueInput | No |
| create | ClubCreateWithoutContact_Contact_clubToClubInput | ClubUncheckedCreateWithoutContact_Contact_clubToClubInput | No |
| Name | Type | Nullable |
|---|---|---|
| alpha_3 | String | No |
| alpha_2 | String | No |
| numeric | String | No |
| name | String | No |
| created_at | DateTime | Null | Yes |
| updated_at | DateTime | Null | Yes |
| Version | VersionCreateNestedOneWithoutCountryInput | No |
| Name | Type | Nullable |
|---|---|---|
| alpha_3 | String | No |
| alpha_2 | String | No |
| numeric | String | No |
| name | String | No |
| version | String | No |
| created_at | DateTime | Null | Yes |
| updated_at | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | CountryWhereUniqueInput | No |
| create | CountryCreateWithoutContactInput | CountryUncheckedCreateWithoutContactInput | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | No |
| updated_at | DateTime | No |
| amount | Int | No |
| donated_at | DateTime | No |
| Member | MemberCreateNestedOneWithoutDonationInput | No |
| Organization | OrganizationCreateNestedOneWithoutDonationInput | No |
| Person | PersonCreateNestedOneWithoutDonationInput | No |
| Version | VersionCreateNestedOneWithoutDonationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| amount | Int | No |
| donated_at | DateTime | No |
| version | String | No |
| person | Int | No |
| member | Int | No |
| organization | Int | No |
| Name | Type | Nullable |
|---|---|---|
| where | DonationWhereUniqueInput | No |
| create | DonationCreateWithoutContactInput | DonationUncheckedCreateWithoutContactInput | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | No |
| updated_at | DateTime | No |
| name | String | No |
| founded_at | DateTime | No |
| accreditation | String | Null | Yes |
| bed_count | Int | Null | Yes |
| emergency_room | Boolean | Null | Yes |
| services | HospitalCreateservicesInput | String | No |
| specialties | HospitalCreatespecialtiesInput | String | No |
| rating | Float | Null | Yes |
| facility_type | FacilityType | Null | Yes |
| ownership | String | Null | Yes |
| insurance_accepted | String | Null | Yes |
| operating_hours | String | Null | Yes |
| infrastructure | String | Null | Yes |
| security_controls | String | Null | Yes |
| founder | Int | Null | Yes |
| director | Int | Null | Yes |
| chairman | Int | Null | Yes |
| Contact_Hospital_contactToContact | ContactCreateNestedOneWithoutHospital_Hospital_contactToContactInput | No |
| Location | LocationCreateNestedOneWithoutHospitalInput | No |
| Version | VersionCreateNestedOneWithoutHospitalInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| name | String | No |
| founded_at | DateTime | No |
| accreditation | String | Null | Yes |
| bed_count | Int | Null | Yes |
| emergency_room | Boolean | Null | Yes |
| services | HospitalCreateservicesInput | String | No |
| specialties | HospitalCreatespecialtiesInput | String | No |
| rating | Float | Null | Yes |
| facility_type | FacilityType | Null | Yes |
| ownership | String | Null | Yes |
| insurance_accepted | String | Null | Yes |
| operating_hours | String | Null | Yes |
| infrastructure | String | Null | Yes |
| security_controls | String | Null | Yes |
| version | String | No |
| location | Int | Null | Yes |
| contact | Int | Null | Yes |
| founder | Int | Null | Yes |
| director | Int | Null | Yes |
| chairman | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | HospitalWhereUniqueInput | No |
| create | HospitalCreateWithoutContact_Contact_hospitalToHospitalInput | HospitalUncheckedCreateWithoutContact_Contact_hospitalToHospitalInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PersonWhereUniqueInput | No |
| create | PersonCreateWithoutContact_Contact_personToPersonInput | PersonUncheckedCreateWithoutContact_Contact_personToPersonInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | VersionWhereUniqueInput | No |
| create | VersionCreateWithoutContactInput | VersionUncheckedCreateWithoutContactInput | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | No |
| updated_at | DateTime | No |
| name | String | No |
| founded_at | DateTime | No |
| accreditation | String | Null | Yes |
| bed_count | Int | Null | Yes |
| emergency_room | Boolean | Null | Yes |
| services | HospitalCreateservicesInput | String | No |
| specialties | HospitalCreatespecialtiesInput | String | No |
| rating | Float | Null | Yes |
| facility_type | FacilityType | Null | Yes |
| ownership | String | Null | Yes |
| insurance_accepted | String | Null | Yes |
| operating_hours | String | Null | Yes |
| infrastructure | String | Null | Yes |
| security_controls | String | Null | Yes |
| founder | Int | Null | Yes |
| director | Int | Null | Yes |
| chairman | Int | Null | Yes |
| Contact_Contact_hospitalToHospital | ContactCreateNestedManyWithoutHospital_Contact_hospitalToHospitalInput | No |
| Location | LocationCreateNestedOneWithoutHospitalInput | No |
| Version | VersionCreateNestedOneWithoutHospitalInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| name | String | No |
| founded_at | DateTime | No |
| accreditation | String | Null | Yes |
| bed_count | Int | Null | Yes |
| emergency_room | Boolean | Null | Yes |
| services | HospitalCreateservicesInput | String | No |
| specialties | HospitalCreatespecialtiesInput | String | No |
| rating | Float | Null | Yes |
| facility_type | FacilityType | Null | Yes |
| ownership | String | Null | Yes |
| insurance_accepted | String | Null | Yes |
| operating_hours | String | Null | Yes |
| infrastructure | String | Null | Yes |
| security_controls | String | Null | Yes |
| version | String | No |
| location | Int | Null | Yes |
| founder | Int | Null | Yes |
| director | Int | Null | Yes |
| chairman | Int | Null | Yes |
| Contact_Contact_hospitalToHospital | ContactUncheckedCreateNestedManyWithoutHospital_Contact_hospitalToHospitalInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | HospitalWhereUniqueInput | No |
| create | HospitalCreateWithoutContact_Hospital_contactToContactInput | HospitalUncheckedCreateWithoutContact_Hospital_contactToContactInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | HospitalCreateManyContact_Hospital_contactToContactInput | HospitalCreateManyContact_Hospital_contactToContactInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | PersonWhereUniqueInput | No |
| create | PersonCreateWithoutContact_Person_contact_idToContactInput | PersonUncheckedCreateWithoutContact_Person_contact_idToContactInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | PersonCreateManyContact_Person_contact_idToContactInput | PersonCreateManyContact_Person_contact_idToContactInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | AmbulanceWhereUniqueInput | No |
| update | AmbulanceUpdateWithoutContactInput | AmbulanceUncheckedUpdateWithoutContactInput | No |
| create | AmbulanceCreateWithoutContactInput | AmbulanceUncheckedCreateWithoutContactInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | AmbulanceWhereUniqueInput | No |
| data | AmbulanceUpdateWithoutContactInput | AmbulanceUncheckedUpdateWithoutContactInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | AmbulanceScalarWhereInput | No |
| data | AmbulanceUpdateManyMutationInput | AmbulanceUncheckedUpdateManyWithoutContactInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | AmbulanceScalarWhereInput | AmbulanceScalarWhereInput[] | No |
| OR | AmbulanceScalarWhereInput[] | No |
| NOT | AmbulanceScalarWhereInput | AmbulanceScalarWhereInput[] | No |
| id | IntFilter | Int | No |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| vehicle_number | StringFilter | String | No |
| ambulance_type | StringNullableFilter | String | Null | Yes |
| person | IntFilter | Int | No |
| version | StringFilter | String | No |
| organization | IntNullableFilter | Int | Null | Yes |
| equipment | StringNullableListFilter | No |
| contact | IntNullableFilter | Int | Null | Yes |
| color | StringNullableFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | BloodCenterScalarWhereInput | No |
| data | BloodCenterUpdateManyMutationInput | BloodCenterUncheckedUpdateManyWithoutContact_BloodCenter_contactToContactInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | BloodCenterScalarWhereInput | BloodCenterScalarWhereInput[] | No |
| OR | BloodCenterScalarWhereInput[] | No |
| NOT | BloodCenterScalarWhereInput | BloodCenterScalarWhereInput[] | No |
| id | IntFilter | Int | No |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| established_at | DateTimeFilter | DateTime | No |
| version | StringFilter | String | No |
| founder | IntFilter | Int | No |
| contact | IntNullableFilter | Int | Null | Yes |
| title | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | ClubWhereUniqueInput | No |
| data | ClubUpdateWithoutContact_Club_contactToContactInput | ClubUncheckedUpdateWithoutContact_Club_contactToContactInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ClubScalarWhereInput | No |
| data | ClubUpdateManyMutationInput | ClubUncheckedUpdateManyWithoutContact_Club_contactToContactInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ClubScalarWhereInput | ClubScalarWhereInput[] | No |
| OR | ClubScalarWhereInput[] | No |
| NOT | ClubScalarWhereInput | ClubScalarWhereInput[] | No |
| id | IntFilter | Int | No |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| name | StringFilter | String | No |
| established_at | DateTimeFilter | DateTime | No |
| contact | IntFilter | Int | No |
| version | StringFilter | String | No |
| chairman | IntFilter | Int | No |
| founder | IntFilter | Int | No |
| vice_chairman | IntFilter | Int | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| established_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| Contact_BloodCenter_contactToContact | ContactUpdateOneWithoutBloodCenter_BloodCenter_contactToContactNestedInput | No |
| Person | PersonUpdateOneRequiredWithoutBloodCenterNestedInput | No |
| Version | VersionUpdateOneRequiredWithoutBloodCenterNestedInput | No |
| BloodDonation | BloodDonationUpdateManyWithoutBloodCenterNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| established_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| founder | Int | IntFieldUpdateOperationsInput | No |
| contact | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| title | String | StringFieldUpdateOperationsInput | No |
| BloodDonation | BloodDonationUncheckedUpdateManyWithoutBloodCenterNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | ClubUpdateWithoutContact_Contact_clubToClubInput | ClubUncheckedUpdateWithoutContact_Contact_clubToClubInput | No |
| create | ClubCreateWithoutContact_Contact_clubToClubInput | ClubUncheckedCreateWithoutContact_Contact_clubToClubInput | No |
| where | ClubWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ClubWhereInput | No |
| data | ClubUpdateWithoutContact_Contact_clubToClubInput | ClubUncheckedUpdateWithoutContact_Contact_clubToClubInput | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| established_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Person_Club_chairmanToPerson | PersonUpdateOneRequiredWithoutClub_Club_chairmanToPersonNestedInput | No |
| Contact_Club_contactToContact | ContactUpdateOneRequiredWithoutClub_Club_contactToContactNestedInput | No |
| Person_Club_founderToPerson | PersonUpdateOneRequiredWithoutClub_Club_founderToPersonNestedInput | No |
| Version | VersionUpdateOneRequiredWithoutClubNestedInput | No |
| Person_Club_vice_chairmanToPerson | PersonUpdateOneRequiredWithoutClub_Club_vice_chairmanToPersonNestedInput | No |
| Member | MemberUpdateManyWithoutClubNestedInput | No |
| Organization | OrganizationUpdateManyWithoutClubNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| established_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| contact | Int | IntFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| chairman | Int | IntFieldUpdateOperationsInput | No |
| founder | Int | IntFieldUpdateOperationsInput | No |
| vice_chairman | Int | IntFieldUpdateOperationsInput | No |
| Member | MemberUncheckedUpdateManyWithoutClubNestedInput | No |
| Organization | OrganizationUncheckedUpdateManyWithoutClubNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | CountryUpdateWithoutContactInput | CountryUncheckedUpdateWithoutContactInput | No |
| create | CountryCreateWithoutContactInput | CountryUncheckedCreateWithoutContactInput | No |
| where | CountryWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CountryWhereInput | No |
| data | CountryUpdateWithoutContactInput | CountryUncheckedUpdateWithoutContactInput | No |
| Name | Type | Nullable |
|---|---|---|
| alpha_3 | String | StringFieldUpdateOperationsInput | No |
| alpha_2 | String | StringFieldUpdateOperationsInput | No |
| numeric | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| updated_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Version | VersionUpdateOneRequiredWithoutCountryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| alpha_3 | String | StringFieldUpdateOperationsInput | No |
| alpha_2 | String | StringFieldUpdateOperationsInput | No |
| numeric | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| updated_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| update | DonationUpdateWithoutContactInput | DonationUncheckedUpdateWithoutContactInput | No |
| create | DonationCreateWithoutContactInput | DonationUncheckedCreateWithoutContactInput | No |
| where | DonationWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | DonationWhereInput | No |
| data | DonationUpdateWithoutContactInput | DonationUncheckedUpdateWithoutContactInput | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| amount | Int | IntFieldUpdateOperationsInput | No |
| donated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Member | MemberUpdateOneRequiredWithoutDonationNestedInput | No |
| Organization | OrganizationUpdateOneRequiredWithoutDonationNestedInput | No |
| Person | PersonUpdateOneRequiredWithoutDonationNestedInput | No |
| Version | VersionUpdateOneRequiredWithoutDonationNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| amount | Int | IntFieldUpdateOperationsInput | No |
| donated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| person | Int | IntFieldUpdateOperationsInput | No |
| member | Int | IntFieldUpdateOperationsInput | No |
| organization | Int | IntFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | HospitalWhereInput | No |
| data | HospitalUpdateWithoutContact_Contact_hospitalToHospitalInput | HospitalUncheckedUpdateWithoutContact_Contact_hospitalToHospitalInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PersonWhereInput | No |
| data | PersonUpdateWithoutContact_Contact_personToPersonInput | PersonUncheckedUpdateWithoutContact_Contact_personToPersonInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | VersionUpdateWithoutContactInput | VersionUncheckedUpdateWithoutContactInput | No |
| create | VersionCreateWithoutContactInput | VersionUncheckedCreateWithoutContactInput | No |
| where | VersionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | VersionWhereInput | No |
| data | VersionUpdateWithoutContactInput | VersionUncheckedUpdateWithoutContactInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | HospitalWhereUniqueInput | No |
| data | HospitalUpdateWithoutContact_Hospital_contactToContactInput | HospitalUncheckedUpdateWithoutContact_Hospital_contactToContactInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | HospitalScalarWhereInput | No |
| data | HospitalUpdateManyMutationInput | HospitalUncheckedUpdateManyWithoutContact_Hospital_contactToContactInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | HospitalScalarWhereInput | HospitalScalarWhereInput[] | No |
| OR | HospitalScalarWhereInput[] | No |
| NOT | HospitalScalarWhereInput | HospitalScalarWhereInput[] | No |
| id | IntFilter | Int | No |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| name | StringFilter | String | No |
| founded_at | DateTimeFilter | DateTime | No |
| accreditation | StringNullableFilter | String | Null | Yes |
| bed_count | IntNullableFilter | Int | Null | Yes |
| emergency_room | BoolNullableFilter | Boolean | Null | Yes |
| services | StringNullableListFilter | No |
| specialties | StringNullableListFilter | No |
| rating | FloatNullableFilter | Float | Null | Yes |
| facility_type | EnumFacilityTypeNullableFilter | FacilityType | Null | Yes |
| ownership | StringNullableFilter | String | Null | Yes |
| insurance_accepted | StringNullableFilter | String | Null | Yes |
| operating_hours | StringNullableFilter | String | Null | Yes |
| infrastructure | StringNullableFilter | String | Null | Yes |
| security_controls | StringNullableFilter | String | Null | Yes |
| version | StringFilter | String | No |
| location | IntNullableFilter | Int | Null | Yes |
| contact | IntNullableFilter | Int | Null | Yes |
| founder | IntNullableFilter | Int | Null | Yes |
| director | IntNullableFilter | Int | Null | Yes |
| chairman | IntNullableFilter | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | PersonWhereUniqueInput | No |
| data | PersonUpdateWithoutContact_Person_contact_idToContactInput | PersonUncheckedUpdateWithoutContact_Person_contact_idToContactInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PersonScalarWhereInput | No |
| data | PersonUpdateManyMutationInput | PersonUncheckedUpdateManyWithoutContact_Person_contact_idToContactInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PersonScalarWhereInput | PersonScalarWhereInput[] | No |
| OR | PersonScalarWhereInput[] | No |
| NOT | PersonScalarWhereInput | PersonScalarWhereInput[] | No |
| id | IntFilter | Int | No |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| first_name | StringFilter | String | No |
| last_name | StringNullableFilter | String | Null | Yes |
| father_name | StringNullableFilter | String | Null | Yes |
| mother_name | StringNullableFilter | String | Null | Yes |
| profession | StringNullableFilter | String | Null | Yes |
| dob | DateTimeNullableFilter | DateTime | Null | Yes |
| gender | EnumGenderNullableFilter | Gender | Null | Yes |
| version | StringFilter | String | No |
| avatar | StringNullableFilter | String | Null | Yes |
| contact_id | IntFilter | Int | No |
| teamId | IntNullableFilter | Int | Null | Yes |
| bid | StringNullableFilter | String | Null | Yes |
| driving | StringNullableFilter | String | Null | Yes |
| nid | StringNullableFilter | String | Null | Yes |
| passport | StringNullableFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| address_line | String | No |
| address_line_1 | String | Null | Yes |
| state | String | No |
| city | String | No |
| zip | String | No |
| phone | String | No |
| phone_1 | String | Null | Yes |
| fax | String | Null | Yes |
| String | Null | Yes | |
| email_1 | String | Null | Yes |
| website | String | Null | Yes |
| social_media | NullableJsonNullValueInput | Json | No |
| version | String | No |
| person | Int | Null | Yes |
| club | Int | Null | Yes |
| blood_center | Int | Null | Yes |
| donation | Int | Null | Yes |
| hospital | Int | Null | Yes |
| Ambulance | AmbulanceUncheckedCreateNestedManyWithoutContactInput | No |
| BloodCenter_BloodCenter_contactToContact | BloodCenterUncheckedCreateNestedManyWithoutContact_BloodCenter_contactToContactInput | No |
| Club_Club_contactToContact | ClubUncheckedCreateNestedManyWithoutContact_Club_contactToContactInput | No |
| Hospital_Hospital_contactToContact | HospitalUncheckedCreateNestedManyWithoutContact_Hospital_contactToContactInput | No |
| Person_Person_contact_idToContact | PersonUncheckedCreateNestedManyWithoutContact_Person_contact_idToContactInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ContactWhereUniqueInput | No |
| create | ContactCreateWithoutCountryInput | ContactUncheckedCreateWithoutCountryInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | ContactCreateManyCountryInput | ContactCreateManyCountryInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | VersionWhereUniqueInput | No |
| create | VersionCreateWithoutCountryInput | VersionUncheckedCreateWithoutCountryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ContactWhereUniqueInput | No |
| update | ContactUpdateWithoutCountryInput | ContactUncheckedUpdateWithoutCountryInput | No |
| create | ContactCreateWithoutCountryInput | ContactUncheckedCreateWithoutCountryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ContactWhereUniqueInput | No |
| data | ContactUpdateWithoutCountryInput | ContactUncheckedUpdateWithoutCountryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ContactScalarWhereInput | No |
| data | ContactUpdateManyMutationInput | ContactUncheckedUpdateManyWithoutCountryInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | VersionUpdateWithoutCountryInput | VersionUncheckedUpdateWithoutCountryInput | No |
| create | VersionCreateWithoutCountryInput | VersionUncheckedCreateWithoutCountryInput | No |
| where | VersionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | VersionWhereInput | No |
| data | VersionUpdateWithoutCountryInput | VersionUncheckedUpdateWithoutCountryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | VersionWhereUniqueInput | No |
| create | VersionCreateWithoutDeviceInput | VersionUncheckedCreateWithoutDeviceInput | No |
| Name | Type | Nullable |
|---|---|---|
| user | Int | No |
| ip_address | String | No |
| user_agent | String | No |
| login_status | String | No |
| session_id | String | Null | Yes |
| location | String | Null | Yes |
| authentication | AuthenticationMethod | Null | Yes |
| security_tokens | String | Null | Yes |
| logout_timestamp | DateTime | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Version | VersionCreateNestedOneWithoutLoginRecordInput | No |
| OrganizationSettings | OrganizationSettingsCreateNestedManyWithoutLoginRecordInput | No |
| User | UserCreateNestedManyWithoutLoginRecordInput | No |
| UserSettings | UserSettingsCreateNestedManyWithoutLoginRecordInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| user | Int | No |
| ip_address | String | No |
| user_agent | String | No |
| login_status | String | No |
| session_id | String | Null | Yes |
| location | String | Null | Yes |
| authentication | AuthenticationMethod | Null | Yes |
| security_tokens | String | Null | Yes |
| logout_timestamp | DateTime | Null | Yes |
| version | String | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| OrganizationSettings | OrganizationSettingsUncheckedCreateNestedManyWithoutLoginRecordInput | No |
| User | UserUncheckedCreateNestedManyWithoutLoginRecordInput | No |
| UserSettings | UserSettingsUncheckedCreateNestedManyWithoutLoginRecordInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | LoginRecordWhereUniqueInput | No |
| create | LoginRecordCreateWithoutDeviceInput | LoginRecordUncheckedCreateWithoutDeviceInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | LoginRecordCreateManyDeviceInput | LoginRecordCreateManyDeviceInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| update | VersionUpdateWithoutDeviceInput | VersionUncheckedUpdateWithoutDeviceInput | No |
| create | VersionCreateWithoutDeviceInput | VersionUncheckedCreateWithoutDeviceInput | No |
| where | VersionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | VersionWhereInput | No |
| data | VersionUpdateWithoutDeviceInput | VersionUncheckedUpdateWithoutDeviceInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | LoginRecordWhereUniqueInput | No |
| update | LoginRecordUpdateWithoutDeviceInput | LoginRecordUncheckedUpdateWithoutDeviceInput | No |
| create | LoginRecordCreateWithoutDeviceInput | LoginRecordUncheckedCreateWithoutDeviceInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | LoginRecordWhereUniqueInput | No |
| data | LoginRecordUpdateWithoutDeviceInput | LoginRecordUncheckedUpdateWithoutDeviceInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | LoginRecordScalarWhereInput | No |
| data | LoginRecordUpdateManyMutationInput | LoginRecordUncheckedUpdateManyWithoutDeviceInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | LoginRecordScalarWhereInput | LoginRecordScalarWhereInput[] | No |
| OR | LoginRecordScalarWhereInput[] | No |
| NOT | LoginRecordScalarWhereInput | LoginRecordScalarWhereInput[] | No |
| id | IntFilter | Int | No |
| user | IntFilter | Int | No |
| ip_address | StringFilter | String | No |
| user_agent | StringFilter | String | No |
| login_status | StringFilter | String | No |
| session_id | StringNullableFilter | String | Null | Yes |
| location | StringNullableFilter | String | Null | Yes |
| authentication | EnumAuthenticationMethodNullableFilter | AuthenticationMethod | Null | Yes |
| security_tokens | StringNullableFilter | String | Null | Yes |
| logout_timestamp | DateTimeNullableFilter | DateTime | Null | Yes |
| version | StringFilter | String | No |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| devices | IntNullableFilter | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| address_line | String | No |
| address_line_1 | String | Null | Yes |
| state | String | No |
| city | String | No |
| zip | String | No |
| phone | String | No |
| phone_1 | String | Null | Yes |
| fax | String | Null | Yes |
| String | Null | Yes | |
| email_1 | String | Null | Yes |
| website | String | Null | Yes |
| social_media | NullableJsonNullValueInput | Json | No |
| version | String | No |
| country | String | Null | Yes |
| person | Int | Null | Yes |
| club | Int | Null | Yes |
| blood_center | Int | Null | Yes |
| hospital | Int | Null | Yes |
| Ambulance | AmbulanceUncheckedCreateNestedManyWithoutContactInput | No |
| BloodCenter_BloodCenter_contactToContact | BloodCenterUncheckedCreateNestedManyWithoutContact_BloodCenter_contactToContactInput | No |
| Club_Club_contactToContact | ClubUncheckedCreateNestedManyWithoutContact_Club_contactToContactInput | No |
| Hospital_Hospital_contactToContact | HospitalUncheckedCreateNestedManyWithoutContact_Hospital_contactToContactInput | No |
| Person_Person_contact_idToContact | PersonUncheckedCreateNestedManyWithoutContact_Person_contact_idToContactInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ContactWhereUniqueInput | No |
| create | ContactCreateWithoutDonationInput | ContactUncheckedCreateWithoutDonationInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | ContactCreateManyDonationInput | ContactCreateManyDonationInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | No |
| updated_at | DateTime | No |
| allergies | String | Null | Yes |
| complications | String | Null | Yes |
| medications | String | Null | Yes |
| blood_disorders | String | Null | Yes |
| infectious_diseases | String | Null | Yes |
| last_blood_donation | DateTime | Null | Yes |
| medical_conditions | String | Null | Yes |
| Club | ClubCreateNestedOneWithoutMemberInput | No |
| Person | PersonCreateNestedOneWithoutMemberInput | No |
| Version | VersionCreateNestedOneWithoutMemberInput | No |
| Request | RequestCreateNestedManyWithoutMemberInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| version | String | No |
| allergies | String | Null | Yes |
| complications | String | Null | Yes |
| medications | String | Null | Yes |
| blood_disorders | String | Null | Yes |
| club_id | Int | Null | Yes |
| infectious_diseases | String | Null | Yes |
| last_blood_donation | DateTime | Null | Yes |
| medical_conditions | String | Null | Yes |
| person_id | Int | Null | Yes |
| Request | RequestUncheckedCreateNestedManyWithoutMemberInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | MemberWhereUniqueInput | No |
| create | MemberCreateWithoutDonationInput | MemberUncheckedCreateWithoutDonationInput | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | No |
| updated_at | DateTime | No |
| org_type | OrgType | No |
| org_id | Int | No |
| Volunteer | JsonNullValueInput | Json | No |
| Ambulance | AmbulanceCreateNestedManyWithoutOrganizationInput | No |
| Club | ClubCreateNestedOneWithoutOrganizationInput | No |
| OrganizationSettings | OrganizationSettingsCreateNestedOneWithoutOrganizationInput | No |
| Person | PersonCreateNestedOneWithoutOrganizationInput | No |
| Version | VersionCreateNestedOneWithoutOrganizationInput | No |
| Support | SupportCreateNestedManyWithoutOrganizationInput | No |
| SupportMessage | SupportMessageCreateNestedManyWithoutOrganizationInput | No |
| Team | TeamCreateNestedManyWithoutOrganizationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| org_type | OrgType | No |
| org_id | Int | No |
| Volunteer | JsonNullValueInput | Json | No |
| personId | Int | No |
| organizationSettingsId | Int | No |
| clubId | Int | Null | Yes |
| version | String | No |
| Ambulance | AmbulanceUncheckedCreateNestedManyWithoutOrganizationInput | No |
| Support | SupportUncheckedCreateNestedManyWithoutOrganizationInput | No |
| SupportMessage | SupportMessageUncheckedCreateNestedManyWithoutOrganizationInput | No |
| Team | TeamUncheckedCreateNestedManyWithoutOrganizationInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrganizationWhereUniqueInput | No |
| create | OrganizationCreateWithoutDonationInput | OrganizationUncheckedCreateWithoutDonationInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PersonWhereUniqueInput | No |
| create | PersonCreateWithoutDonationInput | PersonUncheckedCreateWithoutDonationInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | VersionWhereUniqueInput | No |
| create | VersionCreateWithoutDonationInput | VersionUncheckedCreateWithoutDonationInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ContactWhereUniqueInput | No |
| update | ContactUpdateWithoutDonationInput | ContactUncheckedUpdateWithoutDonationInput | No |
| create | ContactCreateWithoutDonationInput | ContactUncheckedCreateWithoutDonationInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ContactWhereUniqueInput | No |
| data | ContactUpdateWithoutDonationInput | ContactUncheckedUpdateWithoutDonationInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ContactScalarWhereInput | No |
| data | ContactUpdateManyMutationInput | ContactUncheckedUpdateManyWithoutDonationInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | MemberUpdateWithoutDonationInput | MemberUncheckedUpdateWithoutDonationInput | No |
| create | MemberCreateWithoutDonationInput | MemberUncheckedCreateWithoutDonationInput | No |
| where | MemberWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | MemberWhereInput | No |
| data | MemberUpdateWithoutDonationInput | MemberUncheckedUpdateWithoutDonationInput | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| allergies | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| complications | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| medications | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| blood_disorders | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| infectious_diseases | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| last_blood_donation | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| medical_conditions | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Club | ClubUpdateOneWithoutMemberNestedInput | No |
| Person | PersonUpdateOneWithoutMemberNestedInput | No |
| Version | VersionUpdateOneRequiredWithoutMemberNestedInput | No |
| Request | RequestUpdateManyWithoutMemberNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| allergies | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| complications | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| medications | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| blood_disorders | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| club_id | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| infectious_diseases | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| last_blood_donation | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| medical_conditions | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| person_id | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Request | RequestUncheckedUpdateManyWithoutMemberNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | OrganizationUpdateWithoutDonationInput | OrganizationUncheckedUpdateWithoutDonationInput | No |
| create | OrganizationCreateWithoutDonationInput | OrganizationUncheckedCreateWithoutDonationInput | No |
| where | OrganizationWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrganizationWhereInput | No |
| data | OrganizationUpdateWithoutDonationInput | OrganizationUncheckedUpdateWithoutDonationInput | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| org_type | OrgType | EnumOrgTypeFieldUpdateOperationsInput | No |
| org_id | Int | IntFieldUpdateOperationsInput | No |
| Volunteer | JsonNullValueInput | Json | No |
| Ambulance | AmbulanceUpdateManyWithoutOrganizationNestedInput | No |
| Club | ClubUpdateOneWithoutOrganizationNestedInput | No |
| OrganizationSettings | OrganizationSettingsUpdateOneRequiredWithoutOrganizationNestedInput | No |
| Person | PersonUpdateOneRequiredWithoutOrganizationNestedInput | No |
| Version | VersionUpdateOneRequiredWithoutOrganizationNestedInput | No |
| Support | SupportUpdateManyWithoutOrganizationNestedInput | No |
| SupportMessage | SupportMessageUpdateManyWithoutOrganizationNestedInput | No |
| Team | TeamUpdateManyWithoutOrganizationNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| org_type | OrgType | EnumOrgTypeFieldUpdateOperationsInput | No |
| org_id | Int | IntFieldUpdateOperationsInput | No |
| Volunteer | JsonNullValueInput | Json | No |
| personId | Int | IntFieldUpdateOperationsInput | No |
| organizationSettingsId | Int | IntFieldUpdateOperationsInput | No |
| clubId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| version | String | StringFieldUpdateOperationsInput | No |
| Ambulance | AmbulanceUncheckedUpdateManyWithoutOrganizationNestedInput | No |
| Support | SupportUncheckedUpdateManyWithoutOrganizationNestedInput | No |
| SupportMessage | SupportMessageUncheckedUpdateManyWithoutOrganizationNestedInput | No |
| Team | TeamUncheckedUpdateManyWithoutOrganizationNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | PersonUpdateWithoutDonationInput | PersonUncheckedUpdateWithoutDonationInput | No |
| create | PersonCreateWithoutDonationInput | PersonUncheckedCreateWithoutDonationInput | No |
| where | PersonWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PersonWhereInput | No |
| data | PersonUpdateWithoutDonationInput | PersonUncheckedUpdateWithoutDonationInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | VersionUpdateWithoutDonationInput | VersionUncheckedUpdateWithoutDonationInput | No |
| create | VersionCreateWithoutDonationInput | VersionUncheckedCreateWithoutDonationInput | No |
| where | VersionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | VersionWhereInput | No |
| data | VersionUpdateWithoutDonationInput | VersionUncheckedUpdateWithoutDonationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| address_line | String | No |
| address_line_1 | String | Null | Yes |
| state | String | No |
| city | String | No |
| zip | String | No |
| phone | String | No |
| phone_1 | String | Null | Yes |
| fax | String | Null | Yes |
| String | Null | Yes | |
| email_1 | String | Null | Yes |
| website | String | Null | Yes |
| social_media | NullableJsonNullValueInput | Json | No |
| version | String | No |
| country | String | Null | Yes |
| person | Int | Null | Yes |
| club | Int | Null | Yes |
| blood_center | Int | Null | Yes |
| donation | Int | Null | Yes |
| Ambulance | AmbulanceUncheckedCreateNestedManyWithoutContactInput | No |
| BloodCenter_BloodCenter_contactToContact | BloodCenterUncheckedCreateNestedManyWithoutContact_BloodCenter_contactToContactInput | No |
| Club_Club_contactToContact | ClubUncheckedCreateNestedManyWithoutContact_Club_contactToContactInput | No |
| Hospital_Hospital_contactToContact | HospitalUncheckedCreateNestedManyWithoutContact_Hospital_contactToContactInput | No |
| Person_Person_contact_idToContact | PersonUncheckedCreateNestedManyWithoutContact_Person_contact_idToContactInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ContactWhereUniqueInput | No |
| create | ContactCreateWithoutHospital_Contact_hospitalToHospitalInput | ContactUncheckedCreateWithoutHospital_Contact_hospitalToHospitalInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | ContactCreateManyHospital_Contact_hospitalToHospitalInput | ContactCreateManyHospital_Contact_hospitalToHospitalInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| address_line | String | No |
| address_line_1 | String | Null | Yes |
| state | String | No |
| city | String | No |
| zip | String | No |
| phone | String | No |
| phone_1 | String | Null | Yes |
| fax | String | Null | Yes |
| String | Null | Yes | |
| email_1 | String | Null | Yes |
| website | String | Null | Yes |
| social_media | NullableJsonNullValueInput | Json | No |
| version | String | No |
| country | String | Null | Yes |
| person | Int | Null | Yes |
| club | Int | Null | Yes |
| blood_center | Int | Null | Yes |
| donation | Int | Null | Yes |
| hospital | Int | Null | Yes |
| Ambulance | AmbulanceUncheckedCreateNestedManyWithoutContactInput | No |
| BloodCenter_BloodCenter_contactToContact | BloodCenterUncheckedCreateNestedManyWithoutContact_BloodCenter_contactToContactInput | No |
| Club_Club_contactToContact | ClubUncheckedCreateNestedManyWithoutContact_Club_contactToContactInput | No |
| Person_Person_contact_idToContact | PersonUncheckedCreateNestedManyWithoutContact_Person_contact_idToContactInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ContactWhereUniqueInput | No |
| create | ContactCreateWithoutHospital_Hospital_contactToContactInput | ContactUncheckedCreateWithoutHospital_Hospital_contactToContactInput | No |
| Name | Type | Nullable |
|---|---|---|
| latitude | Float | No |
| longitude | Float | No |
| created_at | DateTime | Null | Yes |
| updated_at | DateTime | Null | Yes |
| Version | VersionCreateNestedOneWithoutLocationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| latitude | Float | No |
| longitude | Float | No |
| version | String | No |
| created_at | DateTime | Null | Yes |
| updated_at | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | LocationWhereUniqueInput | No |
| create | LocationCreateWithoutHospitalInput | LocationUncheckedCreateWithoutHospitalInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | VersionWhereUniqueInput | No |
| create | VersionCreateWithoutHospitalInput | VersionUncheckedCreateWithoutHospitalInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ContactWhereUniqueInput | No |
| data | ContactUpdateWithoutHospital_Contact_hospitalToHospitalInput | ContactUncheckedUpdateWithoutHospital_Contact_hospitalToHospitalInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ContactScalarWhereInput | No |
| data | ContactUpdateManyMutationInput | ContactUncheckedUpdateManyWithoutHospital_Contact_hospitalToHospitalInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ContactWhereInput | No |
| data | ContactUpdateWithoutHospital_Hospital_contactToContactInput | ContactUncheckedUpdateWithoutHospital_Hospital_contactToContactInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | LocationUpdateWithoutHospitalInput | LocationUncheckedUpdateWithoutHospitalInput | No |
| create | LocationCreateWithoutHospitalInput | LocationUncheckedCreateWithoutHospitalInput | No |
| where | LocationWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | LocationWhereInput | No |
| data | LocationUpdateWithoutHospitalInput | LocationUncheckedUpdateWithoutHospitalInput | No |
| Name | Type | Nullable |
|---|---|---|
| latitude | Float | FloatFieldUpdateOperationsInput | No |
| longitude | Float | FloatFieldUpdateOperationsInput | No |
| created_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| updated_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Version | VersionUpdateOneRequiredWithoutLocationNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| latitude | Float | FloatFieldUpdateOperationsInput | No |
| longitude | Float | FloatFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| updated_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| update | VersionUpdateWithoutHospitalInput | VersionUncheckedUpdateWithoutHospitalInput | No |
| create | VersionCreateWithoutHospitalInput | VersionUncheckedCreateWithoutHospitalInput | No |
| where | VersionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | VersionWhereInput | No |
| data | VersionUpdateWithoutHospitalInput | VersionUncheckedUpdateWithoutHospitalInput | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | No |
| updated_at | DateTime | No |
| name | String | No |
| founded_at | DateTime | No |
| accreditation | String | Null | Yes |
| bed_count | Int | Null | Yes |
| emergency_room | Boolean | Null | Yes |
| services | HospitalCreateservicesInput | String | No |
| specialties | HospitalCreatespecialtiesInput | String | No |
| rating | Float | Null | Yes |
| facility_type | FacilityType | Null | Yes |
| ownership | String | Null | Yes |
| insurance_accepted | String | Null | Yes |
| operating_hours | String | Null | Yes |
| infrastructure | String | Null | Yes |
| security_controls | String | Null | Yes |
| founder | Int | Null | Yes |
| director | Int | Null | Yes |
| chairman | Int | Null | Yes |
| Contact_Contact_hospitalToHospital | ContactCreateNestedManyWithoutHospital_Contact_hospitalToHospitalInput | No |
| Contact_Hospital_contactToContact | ContactCreateNestedOneWithoutHospital_Hospital_contactToContactInput | No |
| Version | VersionCreateNestedOneWithoutHospitalInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| name | String | No |
| founded_at | DateTime | No |
| accreditation | String | Null | Yes |
| bed_count | Int | Null | Yes |
| emergency_room | Boolean | Null | Yes |
| services | HospitalCreateservicesInput | String | No |
| specialties | HospitalCreatespecialtiesInput | String | No |
| rating | Float | Null | Yes |
| facility_type | FacilityType | Null | Yes |
| ownership | String | Null | Yes |
| insurance_accepted | String | Null | Yes |
| operating_hours | String | Null | Yes |
| infrastructure | String | Null | Yes |
| security_controls | String | Null | Yes |
| version | String | No |
| contact | Int | Null | Yes |
| founder | Int | Null | Yes |
| director | Int | Null | Yes |
| chairman | Int | Null | Yes |
| Contact_Contact_hospitalToHospital | ContactUncheckedCreateNestedManyWithoutHospital_Contact_hospitalToHospitalInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | HospitalWhereUniqueInput | No |
| create | HospitalCreateWithoutLocationInput | HospitalUncheckedCreateWithoutLocationInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | HospitalCreateManyLocationInput | HospitalCreateManyLocationInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | VersionWhereUniqueInput | No |
| create | VersionCreateWithoutLocationInput | VersionUncheckedCreateWithoutLocationInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | HospitalWhereUniqueInput | No |
| update | HospitalUpdateWithoutLocationInput | HospitalUncheckedUpdateWithoutLocationInput | No |
| create | HospitalCreateWithoutLocationInput | HospitalUncheckedCreateWithoutLocationInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | HospitalWhereUniqueInput | No |
| data | HospitalUpdateWithoutLocationInput | HospitalUncheckedUpdateWithoutLocationInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | HospitalScalarWhereInput | No |
| data | HospitalUpdateManyMutationInput | HospitalUncheckedUpdateManyWithoutLocationInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | VersionUpdateWithoutLocationInput | VersionUncheckedUpdateWithoutLocationInput | No |
| create | VersionCreateWithoutLocationInput | VersionUncheckedCreateWithoutLocationInput | No |
| where | VersionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | VersionWhereInput | No |
| data | VersionUpdateWithoutLocationInput | VersionUncheckedUpdateWithoutLocationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | Null | Yes |
| updated_at | DateTime | Null | Yes |
| name | String | Null | Yes |
| mac_address | String | Null | Yes |
| model | String | Null | Yes |
| os | String | Null | Yes |
| os_version | String | Null | Yes |
| device_id | String | Null | Yes |
| brand | String | Null | Yes |
| manufacturer | String | Null | Yes |
| Version | VersionCreateNestedOneWithoutDeviceInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | Null | Yes |
| updated_at | DateTime | Null | Yes |
| name | String | Null | Yes |
| mac_address | String | Null | Yes |
| model | String | Null | Yes |
| os | String | Null | Yes |
| os_version | String | Null | Yes |
| device_id | String | Null | Yes |
| brand | String | Null | Yes |
| manufacturer | String | Null | Yes |
| version | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | DeviceWhereUniqueInput | No |
| create | DeviceCreateWithoutLoginRecordInput | DeviceUncheckedCreateWithoutLoginRecordInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | VersionWhereUniqueInput | No |
| create | VersionCreateWithoutLoginRecordInput | VersionUncheckedCreateWithoutLoginRecordInput | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | No |
| updated_at | DateTime | No |
| language | Language | No |
| time_format | TimeFormat | No |
| date_format | DateFormat | No |
| timezone | Timezone | No |
| theme | Theme | Null | Yes |
| email_notifications | Boolean | No |
| phone_notification | Boolean | No |
| push_notifications | Boolean | No |
| two_factor_auth | Boolean | Null | Yes |
| accountDeactivation | Boolean | Null | Yes |
| avatar | String | Null | Yes |
| clearBrowsingData | Boolean | Null | Yes |
| contactSupportLink | String | Null | Yes |
| dataRetentionDays | Int | Null | Yes |
| dataSharing | Boolean | Null | Yes |
| helpCenterLink | String | Null | Yes |
| high_contrast_mode | Boolean | Null | Yes |
| in_app_notifications | Boolean | Null | Yes |
| key_board_shortcut | Boolean | Null | Yes |
| notification_frequency | String | Null | Yes |
| notification_sound | String | Null | Yes |
| notification_vibrate | Boolean | Null | Yes |
| password_reset | Boolean | Null | Yes |
| security_answer | String | Null | Yes |
| security_question | String | Null | Yes |
| username | String | Null | Yes |
| Organization | OrganizationCreateNestedManyWithoutOrganizationSettingsInput | No |
| Version | VersionCreateNestedOneWithoutOrganizationSettingsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| language | Language | No |
| time_format | TimeFormat | No |
| date_format | DateFormat | No |
| timezone | Timezone | No |
| theme | Theme | Null | Yes |
| email_notifications | Boolean | No |
| phone_notification | Boolean | No |
| push_notifications | Boolean | No |
| two_factor_auth | Boolean | Null | Yes |
| accountDeactivation | Boolean | Null | Yes |
| avatar | String | Null | Yes |
| clearBrowsingData | Boolean | Null | Yes |
| contactSupportLink | String | Null | Yes |
| dataRetentionDays | Int | Null | Yes |
| dataSharing | Boolean | Null | Yes |
| helpCenterLink | String | Null | Yes |
| high_contrast_mode | Boolean | Null | Yes |
| in_app_notifications | Boolean | Null | Yes |
| key_board_shortcut | Boolean | Null | Yes |
| notification_frequency | String | Null | Yes |
| notification_sound | String | Null | Yes |
| notification_vibrate | Boolean | Null | Yes |
| password_reset | Boolean | Null | Yes |
| security_answer | String | Null | Yes |
| security_question | String | Null | Yes |
| username | String | Null | Yes |
| version | String | No |
| Organization | OrganizationUncheckedCreateNestedManyWithoutOrganizationSettingsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrganizationSettingsWhereUniqueInput | No |
| create | OrganizationSettingsCreateWithoutLoginRecordInput | OrganizationSettingsUncheckedCreateWithoutLoginRecordInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | OrganizationSettingsCreateManyLoginRecordInput | OrganizationSettingsCreateManyLoginRecordInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| username | String | Null | Yes |
| String | No | |
| password | String | No |
| status | AccountStatus | No |
| ip | String | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| SecurityQuestion | SecurityQuestionCreateNestedManyWithoutUserInput | No |
| Person | PersonCreateNestedOneWithoutUserInput | No |
| SocialMediaLinks | SocialMediaLinksCreateNestedOneWithoutUserInput | No |
| TwoFactorAuth | TwoFactorAuthCreateNestedOneWithoutUserInput | No |
| UserSettings | UserSettingsCreateNestedOneWithoutUserInput | No |
| Version | VersionCreateNestedOneWithoutUserInput | No |
| UserRole | UserRoleCreateNestedManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| username | String | Null | Yes |
| String | No | |
| password | String | No |
| status | AccountStatus | No |
| ip | String | No |
| two_factor_auth | Int | No |
| social_login | Int | No |
| person | Int | No |
| settings | Int | No |
| version | String | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| SecurityQuestion | SecurityQuestionUncheckedCreateNestedManyWithoutUserInput | No |
| UserRole | UserRoleUncheckedCreateNestedManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutLoginRecordInput | UserUncheckedCreateWithoutLoginRecordInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | UserCreateManyLoginRecordInput | UserCreateManyLoginRecordInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | No |
| updated_at | DateTime | No |
| language | Language | No |
| time_format | TimeFormat | No |
| date_format | DateFormat | No |
| timezone | Timezone | No |
| theme | Theme | Null | Yes |
| email_notifications | Boolean | No |
| phone_notification | Boolean | No |
| push_notifications | Boolean | No |
| two_factor_auth | Boolean | Null | Yes |
| high_contrast_mode | Boolean | Null | Yes |
| in_app_notifications | Boolean | Null | Yes |
| key_board_shortcut | Boolean | Null | Yes |
| notification_frequency | String | Null | Yes |
| notification_sound | String | Null | Yes |
| notification_vibrate | Boolean | Null | Yes |
| password_reset | Boolean | Null | Yes |
| User | UserCreateNestedManyWithoutUserSettingsInput | No |
| SecurityQuestion | SecurityQuestionCreateNestedOneWithoutUserSettingsInput | No |
| Version | VersionCreateNestedOneWithoutUserSettingsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| language | Language | No |
| time_format | TimeFormat | No |
| date_format | DateFormat | No |
| timezone | Timezone | No |
| theme | Theme | Null | Yes |
| email_notifications | Boolean | No |
| phone_notification | Boolean | No |
| push_notifications | Boolean | No |
| two_factor_auth | Boolean | Null | Yes |
| high_contrast_mode | Boolean | Null | Yes |
| in_app_notifications | Boolean | Null | Yes |
| key_board_shortcut | Boolean | Null | Yes |
| notification_frequency | String | Null | Yes |
| notification_sound | String | Null | Yes |
| notification_vibrate | Boolean | Null | Yes |
| password_reset | Boolean | Null | Yes |
| version | String | No |
| security_question | Int | Null | Yes |
| User | UserUncheckedCreateNestedManyWithoutUserSettingsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserSettingsWhereUniqueInput | No |
| create | UserSettingsCreateWithoutLoginRecordInput | UserSettingsUncheckedCreateWithoutLoginRecordInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | UserSettingsCreateManyLoginRecordInput | UserSettingsCreateManyLoginRecordInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| update | DeviceUpdateWithoutLoginRecordInput | DeviceUncheckedUpdateWithoutLoginRecordInput | No |
| create | DeviceCreateWithoutLoginRecordInput | DeviceUncheckedCreateWithoutLoginRecordInput | No |
| where | DeviceWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | DeviceWhereInput | No |
| data | DeviceUpdateWithoutLoginRecordInput | DeviceUncheckedUpdateWithoutLoginRecordInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| updated_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| name | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| mac_address | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| model | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| os | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| os_version | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| device_id | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| brand | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| manufacturer | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Version | VersionUpdateOneRequiredWithoutDeviceNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| updated_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| name | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| mac_address | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| model | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| os | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| os_version | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| device_id | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| brand | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| manufacturer | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| version | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | VersionUpdateWithoutLoginRecordInput | VersionUncheckedUpdateWithoutLoginRecordInput | No |
| create | VersionCreateWithoutLoginRecordInput | VersionUncheckedCreateWithoutLoginRecordInput | No |
| where | VersionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | VersionWhereInput | No |
| data | VersionUpdateWithoutLoginRecordInput | VersionUncheckedUpdateWithoutLoginRecordInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrganizationSettingsWhereUniqueInput | No |
| data | OrganizationSettingsUpdateWithoutLoginRecordInput | OrganizationSettingsUncheckedUpdateWithoutLoginRecordInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrganizationSettingsScalarWhereInput | No |
| data | OrganizationSettingsUpdateManyMutationInput | OrganizationSettingsUncheckedUpdateManyWithoutLoginRecordInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | OrganizationSettingsScalarWhereInput | OrganizationSettingsScalarWhereInput[] | No |
| OR | OrganizationSettingsScalarWhereInput[] | No |
| NOT | OrganizationSettingsScalarWhereInput | OrganizationSettingsScalarWhereInput[] | No |
| id | IntFilter | Int | No |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| language | EnumLanguageFilter | Language | No |
| time_format | EnumTimeFormatFilter | TimeFormat | No |
| date_format | EnumDateFormatFilter | DateFormat | No |
| timezone | EnumTimezoneFilter | Timezone | No |
| theme | EnumThemeNullableFilter | Theme | Null | Yes |
| email_notifications | BoolFilter | Boolean | No |
| phone_notification | BoolFilter | Boolean | No |
| push_notifications | BoolFilter | Boolean | No |
| two_factor_auth | BoolNullableFilter | Boolean | Null | Yes |
| loginRecordId | IntNullableFilter | Int | Null | Yes |
| accountDeactivation | BoolNullableFilter | Boolean | Null | Yes |
| avatar | StringNullableFilter | String | Null | Yes |
| clearBrowsingData | BoolNullableFilter | Boolean | Null | Yes |
| contactSupportLink | StringNullableFilter | String | Null | Yes |
| dataRetentionDays | IntNullableFilter | Int | Null | Yes |
| dataSharing | BoolNullableFilter | Boolean | Null | Yes |
| helpCenterLink | StringNullableFilter | String | Null | Yes |
| high_contrast_mode | BoolNullableFilter | Boolean | Null | Yes |
| in_app_notifications | BoolNullableFilter | Boolean | Null | Yes |
| key_board_shortcut | BoolNullableFilter | Boolean | Null | Yes |
| notification_frequency | StringNullableFilter | String | Null | Yes |
| notification_sound | StringNullableFilter | String | Null | Yes |
| notification_vibrate | BoolNullableFilter | Boolean | Null | Yes |
| password_reset | BoolNullableFilter | Boolean | Null | Yes |
| security_answer | StringNullableFilter | String | Null | Yes |
| security_question | StringNullableFilter | String | Null | Yes |
| username | StringNullableFilter | String | Null | Yes |
| version | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| update | UserUpdateWithoutLoginRecordInput | UserUncheckedUpdateWithoutLoginRecordInput | No |
| create | UserCreateWithoutLoginRecordInput | UserUncheckedCreateWithoutLoginRecordInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| data | UserUpdateWithoutLoginRecordInput | UserUncheckedUpdateWithoutLoginRecordInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserScalarWhereInput | No |
| data | UserUpdateManyMutationInput | UserUncheckedUpdateManyWithoutLoginRecordInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | UserScalarWhereInput | UserScalarWhereInput[] | No |
| OR | UserScalarWhereInput[] | No |
| NOT | UserScalarWhereInput | UserScalarWhereInput[] | No |
| id | IntFilter | Int | No |
| username | StringNullableFilter | String | Null | Yes |
| StringFilter | String | No | |
| password | StringFilter | String | No |
| status | EnumAccountStatusFilter | AccountStatus | No |
| ip | StringFilter | String | No |
| two_factor_auth | IntFilter | Int | No |
| social_login | IntFilter | Int | No |
| logins | IntFilter | Int | No |
| person | IntFilter | Int | No |
| settings | IntFilter | Int | No |
| version | StringFilter | String | No |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserSettingsWhereUniqueInput | No |
| update | UserSettingsUpdateWithoutLoginRecordInput | UserSettingsUncheckedUpdateWithoutLoginRecordInput | No |
| create | UserSettingsCreateWithoutLoginRecordInput | UserSettingsUncheckedCreateWithoutLoginRecordInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserSettingsWhereUniqueInput | No |
| data | UserSettingsUpdateWithoutLoginRecordInput | UserSettingsUncheckedUpdateWithoutLoginRecordInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserSettingsScalarWhereInput | No |
| data | UserSettingsUpdateManyMutationInput | UserSettingsUncheckedUpdateManyWithoutLoginRecordInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | UserSettingsScalarWhereInput | UserSettingsScalarWhereInput[] | No |
| OR | UserSettingsScalarWhereInput[] | No |
| NOT | UserSettingsScalarWhereInput | UserSettingsScalarWhereInput[] | No |
| id | IntFilter | Int | No |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| language | EnumLanguageFilter | Language | No |
| time_format | EnumTimeFormatFilter | TimeFormat | No |
| date_format | EnumDateFormatFilter | DateFormat | No |
| timezone | EnumTimezoneFilter | Timezone | No |
| theme | EnumThemeNullableFilter | Theme | Null | Yes |
| email_notifications | BoolFilter | Boolean | No |
| phone_notification | BoolFilter | Boolean | No |
| push_notifications | BoolFilter | Boolean | No |
| two_factor_auth | BoolNullableFilter | Boolean | Null | Yes |
| login_record_id | IntFilter | Int | No |
| high_contrast_mode | BoolNullableFilter | Boolean | Null | Yes |
| in_app_notifications | BoolNullableFilter | Boolean | Null | Yes |
| key_board_shortcut | BoolNullableFilter | Boolean | Null | Yes |
| notification_frequency | StringNullableFilter | String | Null | Yes |
| notification_sound | StringNullableFilter | String | Null | Yes |
| notification_vibrate | BoolNullableFilter | Boolean | Null | Yes |
| password_reset | BoolNullableFilter | Boolean | Null | Yes |
| version | StringFilter | String | No |
| security_question | IntNullableFilter | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | No |
| updated_at | DateTime | No |
| amount | Int | No |
| donated_at | DateTime | No |
| Contact | ContactCreateNestedManyWithoutDonationInput | No |
| Organization | OrganizationCreateNestedOneWithoutDonationInput | No |
| Person | PersonCreateNestedOneWithoutDonationInput | No |
| Version | VersionCreateNestedOneWithoutDonationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| amount | Int | No |
| donated_at | DateTime | No |
| version | String | No |
| person | Int | No |
| organization | Int | No |
| Contact | ContactUncheckedCreateNestedManyWithoutDonationInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | DonationWhereUniqueInput | No |
| create | DonationCreateWithoutMemberInput | DonationUncheckedCreateWithoutMemberInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | DonationCreateManyMemberInput | DonationCreateManyMemberInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | No |
| updated_at | DateTime | No |
| name | String | No |
| established_at | DateTime | No |
| Person_Club_chairmanToPerson | PersonCreateNestedOneWithoutClub_Club_chairmanToPersonInput | No |
| Contact_Club_contactToContact | ContactCreateNestedOneWithoutClub_Club_contactToContactInput | No |
| Person_Club_founderToPerson | PersonCreateNestedOneWithoutClub_Club_founderToPersonInput | No |
| Version | VersionCreateNestedOneWithoutClubInput | No |
| Person_Club_vice_chairmanToPerson | PersonCreateNestedOneWithoutClub_Club_vice_chairmanToPersonInput | No |
| Contact_Contact_clubToClub | ContactCreateNestedManyWithoutClub_Contact_clubToClubInput | No |
| Organization | OrganizationCreateNestedManyWithoutClubInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| name | String | No |
| established_at | DateTime | No |
| contact | Int | No |
| version | String | No |
| chairman | Int | No |
| founder | Int | No |
| vice_chairman | Int | No |
| Contact_Contact_clubToClub | ContactUncheckedCreateNestedManyWithoutClub_Contact_clubToClubInput | No |
| Organization | OrganizationUncheckedCreateNestedManyWithoutClubInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ClubWhereUniqueInput | No |
| create | ClubCreateWithoutMemberInput | ClubUncheckedCreateWithoutMemberInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PersonWhereUniqueInput | No |
| create | PersonCreateWithoutMemberInput | PersonUncheckedCreateWithoutMemberInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | VersionWhereUniqueInput | No |
| create | VersionCreateWithoutMemberInput | VersionUncheckedCreateWithoutMemberInput | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | No |
| updated_at | DateTime | No |
| health_issue | String | No |
| blood_group | BloodGroup | No |
| quantity | Int | No |
| donation_type | String | No |
| datetime | DateTime | No |
| hospital_name | String | No |
| hospital_address | String | No |
| hospital_phone | String | No |
| hospital_email | String | No |
| Person | PersonCreateNestedOneWithoutRequestInput | No |
| Version | VersionCreateNestedOneWithoutRequestInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| health_issue | String | No |
| blood_group | BloodGroup | No |
| quantity | Int | No |
| donation_type | String | No |
| datetime | DateTime | No |
| hospital_name | String | No |
| hospital_address | String | No |
| hospital_phone | String | No |
| hospital_email | String | No |
| version | String | No |
| personId | Int | No |
| Name | Type | Nullable |
|---|---|---|
| where | RequestWhereUniqueInput | No |
| create | RequestCreateWithoutMemberInput | RequestUncheckedCreateWithoutMemberInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | RequestCreateManyMemberInput | RequestCreateManyMemberInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | DonationWhereUniqueInput | No |
| update | DonationUpdateWithoutMemberInput | DonationUncheckedUpdateWithoutMemberInput | No |
| create | DonationCreateWithoutMemberInput | DonationUncheckedCreateWithoutMemberInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | DonationWhereUniqueInput | No |
| data | DonationUpdateWithoutMemberInput | DonationUncheckedUpdateWithoutMemberInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | DonationScalarWhereInput | No |
| data | DonationUpdateManyMutationInput | DonationUncheckedUpdateManyWithoutMemberInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | DonationScalarWhereInput | DonationScalarWhereInput[] | No |
| OR | DonationScalarWhereInput[] | No |
| NOT | DonationScalarWhereInput | DonationScalarWhereInput[] | No |
| id | IntFilter | Int | No |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| amount | IntFilter | Int | No |
| donated_at | DateTimeFilter | DateTime | No |
| version | StringFilter | String | No |
| person | IntFilter | Int | No |
| member | IntFilter | Int | No |
| organization | IntFilter | Int | No |
| Name | Type | Nullable |
|---|---|---|
| update | ClubUpdateWithoutMemberInput | ClubUncheckedUpdateWithoutMemberInput | No |
| create | ClubCreateWithoutMemberInput | ClubUncheckedCreateWithoutMemberInput | No |
| where | ClubWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ClubWhereInput | No |
| data | ClubUpdateWithoutMemberInput | ClubUncheckedUpdateWithoutMemberInput | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| established_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Person_Club_chairmanToPerson | PersonUpdateOneRequiredWithoutClub_Club_chairmanToPersonNestedInput | No |
| Contact_Club_contactToContact | ContactUpdateOneRequiredWithoutClub_Club_contactToContactNestedInput | No |
| Person_Club_founderToPerson | PersonUpdateOneRequiredWithoutClub_Club_founderToPersonNestedInput | No |
| Version | VersionUpdateOneRequiredWithoutClubNestedInput | No |
| Person_Club_vice_chairmanToPerson | PersonUpdateOneRequiredWithoutClub_Club_vice_chairmanToPersonNestedInput | No |
| Contact_Contact_clubToClub | ContactUpdateManyWithoutClub_Contact_clubToClubNestedInput | No |
| Organization | OrganizationUpdateManyWithoutClubNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| established_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| contact | Int | IntFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| chairman | Int | IntFieldUpdateOperationsInput | No |
| founder | Int | IntFieldUpdateOperationsInput | No |
| vice_chairman | Int | IntFieldUpdateOperationsInput | No |
| Contact_Contact_clubToClub | ContactUncheckedUpdateManyWithoutClub_Contact_clubToClubNestedInput | No |
| Organization | OrganizationUncheckedUpdateManyWithoutClubNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | PersonUpdateWithoutMemberInput | PersonUncheckedUpdateWithoutMemberInput | No |
| create | PersonCreateWithoutMemberInput | PersonUncheckedCreateWithoutMemberInput | No |
| where | PersonWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PersonWhereInput | No |
| data | PersonUpdateWithoutMemberInput | PersonUncheckedUpdateWithoutMemberInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | VersionUpdateWithoutMemberInput | VersionUncheckedUpdateWithoutMemberInput | No |
| create | VersionCreateWithoutMemberInput | VersionUncheckedCreateWithoutMemberInput | No |
| where | VersionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | VersionWhereInput | No |
| data | VersionUpdateWithoutMemberInput | VersionUncheckedUpdateWithoutMemberInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RequestWhereUniqueInput | No |
| update | RequestUpdateWithoutMemberInput | RequestUncheckedUpdateWithoutMemberInput | No |
| create | RequestCreateWithoutMemberInput | RequestUncheckedCreateWithoutMemberInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RequestWhereUniqueInput | No |
| data | RequestUpdateWithoutMemberInput | RequestUncheckedUpdateWithoutMemberInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RequestScalarWhereInput | No |
| data | RequestUpdateManyMutationInput | RequestUncheckedUpdateManyWithoutMemberInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | RequestScalarWhereInput | RequestScalarWhereInput[] | No |
| OR | RequestScalarWhereInput[] | No |
| NOT | RequestScalarWhereInput | RequestScalarWhereInput[] | No |
| id | IntFilter | Int | No |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| health_issue | StringFilter | String | No |
| blood_group | EnumBloodGroupFilter | BloodGroup | No |
| quantity | IntFilter | Int | No |
| donation_type | StringFilter | String | No |
| datetime | DateTimeFilter | DateTime | No |
| hospital_name | StringFilter | String | No |
| hospital_address | StringFilter | String | No |
| hospital_phone | StringFilter | String | No |
| hospital_email | StringFilter | String | No |
| version | StringFilter | String | No |
| memberId | IntNullableFilter | Int | Null | Yes |
| personId | IntFilter | Int | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | No |
| updated_at | DateTime | No |
| vehicle_number | String | No |
| ambulance_type | String | Null | Yes |
| equipment | AmbulanceCreateequipmentInput | String | No |
| color | String | Null | Yes |
| Contact | ContactCreateNestedOneWithoutAmbulanceInput | No |
| Person | PersonCreateNestedOneWithoutAmbulanceInput | No |
| Version | VersionCreateNestedOneWithoutAmbulanceInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| vehicle_number | String | No |
| ambulance_type | String | Null | Yes |
| person | Int | No |
| version | String | No |
| equipment | AmbulanceCreateequipmentInput | String | No |
| contact | Int | Null | Yes |
| color | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | AmbulanceWhereUniqueInput | No |
| create | AmbulanceCreateWithoutOrganizationInput | AmbulanceUncheckedCreateWithoutOrganizationInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | AmbulanceCreateManyOrganizationInput | AmbulanceCreateManyOrganizationInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | No |
| updated_at | DateTime | No |
| amount | Int | No |
| donated_at | DateTime | No |
| Contact | ContactCreateNestedManyWithoutDonationInput | No |
| Member | MemberCreateNestedOneWithoutDonationInput | No |
| Person | PersonCreateNestedOneWithoutDonationInput | No |
| Version | VersionCreateNestedOneWithoutDonationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| amount | Int | No |
| donated_at | DateTime | No |
| version | String | No |
| person | Int | No |
| member | Int | No |
| Contact | ContactUncheckedCreateNestedManyWithoutDonationInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | DonationWhereUniqueInput | No |
| create | DonationCreateWithoutOrganizationInput | DonationUncheckedCreateWithoutOrganizationInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | DonationCreateManyOrganizationInput | DonationCreateManyOrganizationInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | No |
| updated_at | DateTime | No |
| name | String | No |
| established_at | DateTime | No |
| Person_Club_chairmanToPerson | PersonCreateNestedOneWithoutClub_Club_chairmanToPersonInput | No |
| Contact_Club_contactToContact | ContactCreateNestedOneWithoutClub_Club_contactToContactInput | No |
| Person_Club_founderToPerson | PersonCreateNestedOneWithoutClub_Club_founderToPersonInput | No |
| Version | VersionCreateNestedOneWithoutClubInput | No |
| Person_Club_vice_chairmanToPerson | PersonCreateNestedOneWithoutClub_Club_vice_chairmanToPersonInput | No |
| Contact_Contact_clubToClub | ContactCreateNestedManyWithoutClub_Contact_clubToClubInput | No |
| Member | MemberCreateNestedManyWithoutClubInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| name | String | No |
| established_at | DateTime | No |
| contact | Int | No |
| version | String | No |
| chairman | Int | No |
| founder | Int | No |
| vice_chairman | Int | No |
| Contact_Contact_clubToClub | ContactUncheckedCreateNestedManyWithoutClub_Contact_clubToClubInput | No |
| Member | MemberUncheckedCreateNestedManyWithoutClubInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ClubWhereUniqueInput | No |
| create | ClubCreateWithoutOrganizationInput | ClubUncheckedCreateWithoutOrganizationInput | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | No |
| updated_at | DateTime | No |
| language | Language | No |
| time_format | TimeFormat | No |
| date_format | DateFormat | No |
| timezone | Timezone | No |
| theme | Theme | Null | Yes |
| email_notifications | Boolean | No |
| phone_notification | Boolean | No |
| push_notifications | Boolean | No |
| two_factor_auth | Boolean | Null | Yes |
| accountDeactivation | Boolean | Null | Yes |
| avatar | String | Null | Yes |
| clearBrowsingData | Boolean | Null | Yes |
| contactSupportLink | String | Null | Yes |
| dataRetentionDays | Int | Null | Yes |
| dataSharing | Boolean | Null | Yes |
| helpCenterLink | String | Null | Yes |
| high_contrast_mode | Boolean | Null | Yes |
| in_app_notifications | Boolean | Null | Yes |
| key_board_shortcut | Boolean | Null | Yes |
| notification_frequency | String | Null | Yes |
| notification_sound | String | Null | Yes |
| notification_vibrate | Boolean | Null | Yes |
| password_reset | Boolean | Null | Yes |
| security_answer | String | Null | Yes |
| security_question | String | Null | Yes |
| username | String | Null | Yes |
| LoginRecord | LoginRecordCreateNestedOneWithoutOrganizationSettingsInput | No |
| Version | VersionCreateNestedOneWithoutOrganizationSettingsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| language | Language | No |
| time_format | TimeFormat | No |
| date_format | DateFormat | No |
| timezone | Timezone | No |
| theme | Theme | Null | Yes |
| email_notifications | Boolean | No |
| phone_notification | Boolean | No |
| push_notifications | Boolean | No |
| two_factor_auth | Boolean | Null | Yes |
| loginRecordId | Int | Null | Yes |
| accountDeactivation | Boolean | Null | Yes |
| avatar | String | Null | Yes |
| clearBrowsingData | Boolean | Null | Yes |
| contactSupportLink | String | Null | Yes |
| dataRetentionDays | Int | Null | Yes |
| dataSharing | Boolean | Null | Yes |
| helpCenterLink | String | Null | Yes |
| high_contrast_mode | Boolean | Null | Yes |
| in_app_notifications | Boolean | Null | Yes |
| key_board_shortcut | Boolean | Null | Yes |
| notification_frequency | String | Null | Yes |
| notification_sound | String | Null | Yes |
| notification_vibrate | Boolean | Null | Yes |
| password_reset | Boolean | Null | Yes |
| security_answer | String | Null | Yes |
| security_question | String | Null | Yes |
| username | String | Null | Yes |
| version | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrganizationSettingsWhereUniqueInput | No |
| create | OrganizationSettingsCreateWithoutOrganizationInput | OrganizationSettingsUncheckedCreateWithoutOrganizationInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PersonWhereUniqueInput | No |
| create | PersonCreateWithoutOrganizationInput | PersonUncheckedCreateWithoutOrganizationInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | VersionWhereUniqueInput | No |
| create | VersionCreateWithoutOrganizationInput | VersionUncheckedCreateWithoutOrganizationInput | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | No |
| updated_at | DateTime | No |
| messages | String | Null | Yes |
| status | String | Null | Yes |
| priority | Int | No |
| subject | String | Null | Yes |
| Version | VersionCreateNestedOneWithoutSupportInput | No |
| SupportMessage | SupportMessageCreateNestedManyWithoutSupportInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| version | String | No |
| messages | String | Null | Yes |
| status | String | Null | Yes |
| priority | Int | No |
| subject | String | Null | Yes |
| SupportMessage | SupportMessageUncheckedCreateNestedManyWithoutSupportInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | SupportWhereUniqueInput | No |
| create | SupportCreateWithoutOrganizationInput | SupportUncheckedCreateWithoutOrganizationInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | SupportCreateManyOrganizationInput | SupportCreateManyOrganizationInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| message | String | No |
| Person | PersonCreateNestedOneWithoutSupportMessageInput | No |
| Support | SupportCreateNestedOneWithoutSupportMessageInput | No |
| Version | VersionCreateNestedOneWithoutSupportMessageInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| support | Int | No |
| message | String | No |
| author | Int | No |
| version | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | SupportMessageWhereUniqueInput | No |
| create | SupportMessageCreateWithoutOrganizationInput | SupportMessageUncheckedCreateWithoutOrganizationInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | SupportMessageCreateManyOrganizationInput | SupportMessageCreateManyOrganizationInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | No |
| updated_at | DateTime | No |
| started_at | DateTime | No |
| ended_at | DateTime | No |
| status | String | No |
| Person_Person_teamIdToTeam | PersonCreateNestedManyWithoutTeam_Person_teamIdToTeamInput | No |
| Person_Team_membersToPerson | PersonCreateNestedOneWithoutTeam_Team_membersToPersonInput | No |
| Version | VersionCreateNestedOneWithoutTeamInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| started_at | DateTime | No |
| ended_at | DateTime | No |
| version | String | No |
| members | Int | No |
| status | String | No |
| Person_Person_teamIdToTeam | PersonUncheckedCreateNestedManyWithoutTeam_Person_teamIdToTeamInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TeamWhereUniqueInput | No |
| create | TeamCreateWithoutOrganizationInput | TeamUncheckedCreateWithoutOrganizationInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | TeamCreateManyOrganizationInput | TeamCreateManyOrganizationInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | AmbulanceWhereUniqueInput | No |
| update | AmbulanceUpdateWithoutOrganizationInput | AmbulanceUncheckedUpdateWithoutOrganizationInput | No |
| create | AmbulanceCreateWithoutOrganizationInput | AmbulanceUncheckedCreateWithoutOrganizationInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | AmbulanceWhereUniqueInput | No |
| data | AmbulanceUpdateWithoutOrganizationInput | AmbulanceUncheckedUpdateWithoutOrganizationInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | AmbulanceScalarWhereInput | No |
| data | AmbulanceUpdateManyMutationInput | AmbulanceUncheckedUpdateManyWithoutOrganizationInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | DonationWhereUniqueInput | No |
| update | DonationUpdateWithoutOrganizationInput | DonationUncheckedUpdateWithoutOrganizationInput | No |
| create | DonationCreateWithoutOrganizationInput | DonationUncheckedCreateWithoutOrganizationInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | DonationWhereUniqueInput | No |
| data | DonationUpdateWithoutOrganizationInput | DonationUncheckedUpdateWithoutOrganizationInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | DonationScalarWhereInput | No |
| data | DonationUpdateManyMutationInput | DonationUncheckedUpdateManyWithoutOrganizationInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | ClubUpdateWithoutOrganizationInput | ClubUncheckedUpdateWithoutOrganizationInput | No |
| create | ClubCreateWithoutOrganizationInput | ClubUncheckedCreateWithoutOrganizationInput | No |
| where | ClubWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ClubWhereInput | No |
| data | ClubUpdateWithoutOrganizationInput | ClubUncheckedUpdateWithoutOrganizationInput | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| established_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Person_Club_chairmanToPerson | PersonUpdateOneRequiredWithoutClub_Club_chairmanToPersonNestedInput | No |
| Contact_Club_contactToContact | ContactUpdateOneRequiredWithoutClub_Club_contactToContactNestedInput | No |
| Person_Club_founderToPerson | PersonUpdateOneRequiredWithoutClub_Club_founderToPersonNestedInput | No |
| Version | VersionUpdateOneRequiredWithoutClubNestedInput | No |
| Person_Club_vice_chairmanToPerson | PersonUpdateOneRequiredWithoutClub_Club_vice_chairmanToPersonNestedInput | No |
| Contact_Contact_clubToClub | ContactUpdateManyWithoutClub_Contact_clubToClubNestedInput | No |
| Member | MemberUpdateManyWithoutClubNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| established_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| contact | Int | IntFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| chairman | Int | IntFieldUpdateOperationsInput | No |
| founder | Int | IntFieldUpdateOperationsInput | No |
| vice_chairman | Int | IntFieldUpdateOperationsInput | No |
| Contact_Contact_clubToClub | ContactUncheckedUpdateManyWithoutClub_Contact_clubToClubNestedInput | No |
| Member | MemberUncheckedUpdateManyWithoutClubNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrganizationSettingsWhereInput | No |
| data | OrganizationSettingsUpdateWithoutOrganizationInput | OrganizationSettingsUncheckedUpdateWithoutOrganizationInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | PersonUpdateWithoutOrganizationInput | PersonUncheckedUpdateWithoutOrganizationInput | No |
| create | PersonCreateWithoutOrganizationInput | PersonUncheckedCreateWithoutOrganizationInput | No |
| where | PersonWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PersonWhereInput | No |
| data | PersonUpdateWithoutOrganizationInput | PersonUncheckedUpdateWithoutOrganizationInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | VersionUpdateWithoutOrganizationInput | VersionUncheckedUpdateWithoutOrganizationInput | No |
| create | VersionCreateWithoutOrganizationInput | VersionUncheckedCreateWithoutOrganizationInput | No |
| where | VersionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | VersionWhereInput | No |
| data | VersionUpdateWithoutOrganizationInput | VersionUncheckedUpdateWithoutOrganizationInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | SupportWhereUniqueInput | No |
| update | SupportUpdateWithoutOrganizationInput | SupportUncheckedUpdateWithoutOrganizationInput | No |
| create | SupportCreateWithoutOrganizationInput | SupportUncheckedCreateWithoutOrganizationInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | SupportWhereUniqueInput | No |
| data | SupportUpdateWithoutOrganizationInput | SupportUncheckedUpdateWithoutOrganizationInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | SupportScalarWhereInput | No |
| data | SupportUpdateManyMutationInput | SupportUncheckedUpdateManyWithoutOrganizationInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | SupportScalarWhereInput | SupportScalarWhereInput[] | No |
| OR | SupportScalarWhereInput[] | No |
| NOT | SupportScalarWhereInput | SupportScalarWhereInput[] | No |
| id | IntFilter | Int | No |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| version | StringFilter | String | No |
| organization | IntFilter | Int | No |
| messages | StringNullableFilter | String | Null | Yes |
| status | StringNullableFilter | String | Null | Yes |
| priority | IntFilter | Int | No |
| subject | StringNullableFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | SupportMessageWhereUniqueInput | No |
| update | SupportMessageUpdateWithoutOrganizationInput | SupportMessageUncheckedUpdateWithoutOrganizationInput | No |
| create | SupportMessageCreateWithoutOrganizationInput | SupportMessageUncheckedCreateWithoutOrganizationInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | SupportMessageWhereUniqueInput | No |
| data | SupportMessageUpdateWithoutOrganizationInput | SupportMessageUncheckedUpdateWithoutOrganizationInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | SupportMessageScalarWhereInput | No |
| data | SupportMessageUpdateManyMutationInput | SupportMessageUncheckedUpdateManyWithoutOrganizationInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | SupportMessageScalarWhereInput | SupportMessageScalarWhereInput[] | No |
| OR | SupportMessageScalarWhereInput[] | No |
| NOT | SupportMessageScalarWhereInput | SupportMessageScalarWhereInput[] | No |
| id | IntFilter | Int | No |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| organization | IntFilter | Int | No |
| support | IntFilter | Int | No |
| message | StringFilter | String | No |
| author | IntFilter | Int | No |
| version | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | TeamWhereUniqueInput | No |
| update | TeamUpdateWithoutOrganizationInput | TeamUncheckedUpdateWithoutOrganizationInput | No |
| create | TeamCreateWithoutOrganizationInput | TeamUncheckedCreateWithoutOrganizationInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TeamWhereUniqueInput | No |
| data | TeamUpdateWithoutOrganizationInput | TeamUncheckedUpdateWithoutOrganizationInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TeamScalarWhereInput | No |
| data | TeamUpdateManyMutationInput | TeamUncheckedUpdateManyWithoutOrganizationInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | TeamScalarWhereInput | TeamScalarWhereInput[] | No |
| OR | TeamScalarWhereInput[] | No |
| NOT | TeamScalarWhereInput | TeamScalarWhereInput[] | No |
| id | IntFilter | Int | No |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| started_at | DateTimeFilter | DateTime | No |
| ended_at | DateTimeFilter | DateTime | No |
| organization | IntFilter | Int | No |
| version | StringFilter | String | No |
| members | IntFilter | Int | No |
| status | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | No |
| updated_at | DateTime | No |
| org_type | OrgType | No |
| org_id | Int | No |
| Volunteer | JsonNullValueInput | Json | No |
| Ambulance | AmbulanceCreateNestedManyWithoutOrganizationInput | No |
| Donation | DonationCreateNestedManyWithoutOrganizationInput | No |
| Club | ClubCreateNestedOneWithoutOrganizationInput | No |
| Person | PersonCreateNestedOneWithoutOrganizationInput | No |
| Version | VersionCreateNestedOneWithoutOrganizationInput | No |
| Support | SupportCreateNestedManyWithoutOrganizationInput | No |
| SupportMessage | SupportMessageCreateNestedManyWithoutOrganizationInput | No |
| Team | TeamCreateNestedManyWithoutOrganizationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| org_type | OrgType | No |
| org_id | Int | No |
| Volunteer | JsonNullValueInput | Json | No |
| personId | Int | No |
| clubId | Int | Null | Yes |
| version | String | No |
| Ambulance | AmbulanceUncheckedCreateNestedManyWithoutOrganizationInput | No |
| Donation | DonationUncheckedCreateNestedManyWithoutOrganizationInput | No |
| Support | SupportUncheckedCreateNestedManyWithoutOrganizationInput | No |
| SupportMessage | SupportMessageUncheckedCreateNestedManyWithoutOrganizationInput | No |
| Team | TeamUncheckedCreateNestedManyWithoutOrganizationInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrganizationWhereUniqueInput | No |
| create | OrganizationCreateWithoutOrganizationSettingsInput | OrganizationUncheckedCreateWithoutOrganizationSettingsInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | OrganizationCreateManyOrganizationSettingsInput | OrganizationCreateManyOrganizationSettingsInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| user | Int | No |
| ip_address | String | No |
| user_agent | String | No |
| login_status | String | No |
| session_id | String | Null | Yes |
| location | String | Null | Yes |
| authentication | AuthenticationMethod | Null | Yes |
| security_tokens | String | Null | Yes |
| logout_timestamp | DateTime | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Device | DeviceCreateNestedOneWithoutLoginRecordInput | No |
| Version | VersionCreateNestedOneWithoutLoginRecordInput | No |
| User | UserCreateNestedManyWithoutLoginRecordInput | No |
| UserSettings | UserSettingsCreateNestedManyWithoutLoginRecordInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| user | Int | No |
| ip_address | String | No |
| user_agent | String | No |
| login_status | String | No |
| session_id | String | Null | Yes |
| location | String | Null | Yes |
| authentication | AuthenticationMethod | Null | Yes |
| security_tokens | String | Null | Yes |
| logout_timestamp | DateTime | Null | Yes |
| version | String | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| devices | Int | Null | Yes |
| User | UserUncheckedCreateNestedManyWithoutLoginRecordInput | No |
| UserSettings | UserSettingsUncheckedCreateNestedManyWithoutLoginRecordInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | LoginRecordWhereUniqueInput | No |
| create | LoginRecordCreateWithoutOrganizationSettingsInput | LoginRecordUncheckedCreateWithoutOrganizationSettingsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | VersionWhereUniqueInput | No |
| create | VersionCreateWithoutOrganizationSettingsInput | VersionUncheckedCreateWithoutOrganizationSettingsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrganizationWhereUniqueInput | No |
| data | OrganizationUpdateWithoutOrganizationSettingsInput | OrganizationUncheckedUpdateWithoutOrganizationSettingsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrganizationScalarWhereInput | No |
| data | OrganizationUpdateManyMutationInput | OrganizationUncheckedUpdateManyWithoutOrganizationSettingsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | LoginRecordWhereInput | No |
| data | LoginRecordUpdateWithoutOrganizationSettingsInput | LoginRecordUncheckedUpdateWithoutOrganizationSettingsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | VersionUpdateWithoutOrganizationSettingsInput | VersionUncheckedUpdateWithoutOrganizationSettingsInput | No |
| create | VersionCreateWithoutOrganizationSettingsInput | VersionUncheckedCreateWithoutOrganizationSettingsInput | No |
| where | VersionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | VersionWhereInput | No |
| data | VersionUpdateWithoutOrganizationSettingsInput | VersionUncheckedUpdateWithoutOrganizationSettingsInput | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | No |
| updated_at | DateTime | No |
| vehicle_number | String | No |
| ambulance_type | String | Null | Yes |
| equipment | AmbulanceCreateequipmentInput | String | No |
| color | String | Null | Yes |
| Contact | ContactCreateNestedOneWithoutAmbulanceInput | No |
| Organization | OrganizationCreateNestedOneWithoutAmbulanceInput | No |
| Version | VersionCreateNestedOneWithoutAmbulanceInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| vehicle_number | String | No |
| ambulance_type | String | Null | Yes |
| version | String | No |
| organization | Int | Null | Yes |
| equipment | AmbulanceCreateequipmentInput | String | No |
| contact | Int | Null | Yes |
| color | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | AmbulanceWhereUniqueInput | No |
| create | AmbulanceCreateWithoutPersonInput | AmbulanceUncheckedCreateWithoutPersonInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | AmbulanceCreateManyPersonInput | AmbulanceCreateManyPersonInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | No |
| updated_at | DateTime | No |
| established_at | DateTime | No |
| title | String | No |
| Contact_BloodCenter_contactToContact | ContactCreateNestedOneWithoutBloodCenter_BloodCenter_contactToContactInput | No |
| Version | VersionCreateNestedOneWithoutBloodCenterInput | No |
| BloodDonation | BloodDonationCreateNestedManyWithoutBloodCenterInput | No |
| Contact_Contact_blood_centerToBloodCenter | ContactCreateNestedManyWithoutBloodCenter_Contact_blood_centerToBloodCenterInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| established_at | DateTime | No |
| version | String | No |
| contact | Int | Null | Yes |
| title | String | No |
| BloodDonation | BloodDonationUncheckedCreateNestedManyWithoutBloodCenterInput | No |
| Contact_Contact_blood_centerToBloodCenter | ContactUncheckedCreateNestedManyWithoutBloodCenter_Contact_blood_centerToBloodCenterInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BloodCenterWhereUniqueInput | No |
| create | BloodCenterCreateWithoutPersonInput | BloodCenterUncheckedCreateWithoutPersonInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | BloodCenterCreateManyPersonInput | BloodCenterCreateManyPersonInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| amount | Int | No |
| donated_at | DateTime | No |
| referred_by | String | Null | Yes |
| test_done | NullableJsonNullValueInput | Json | No |
| bags | BloodDonationCreatebagsInput | String | No |
| media_done | String | Null | Yes |
| media_used | String | Null | Yes |
| incubation | String | Null | Yes |
| note | String | Null | Yes |
| created_at | DateTime | Null | Yes |
| updated_at | DateTime | Null | Yes |
| cabin_no | String | Null | Yes |
| reg_no | String | Null | Yes |
| BloodCenter | BloodCenterCreateNestedOneWithoutBloodDonationInput | No |
| Version | VersionCreateNestedOneWithoutBloodDonationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| organization_id | Int | No |
| amount | Int | No |
| version | String | No |
| donated_at | DateTime | No |
| referred_by | String | Null | Yes |
| test_done | NullableJsonNullValueInput | Json | No |
| bags | BloodDonationCreatebagsInput | String | No |
| media_done | String | Null | Yes |
| media_used | String | Null | Yes |
| incubation | String | Null | Yes |
| note | String | Null | Yes |
| created_at | DateTime | Null | Yes |
| updated_at | DateTime | Null | Yes |
| cabin_no | String | Null | Yes |
| reg_no | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | BloodDonationWhereUniqueInput | No |
| create | BloodDonationCreateWithoutPersonInput | BloodDonationUncheckedCreateWithoutPersonInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | BloodDonationCreateManyPersonInput | BloodDonationCreateManyPersonInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | No |
| updated_at | DateTime | No |
| name | String | No |
| established_at | DateTime | No |
| Contact_Club_contactToContact | ContactCreateNestedOneWithoutClub_Club_contactToContactInput | No |
| Person_Club_founderToPerson | PersonCreateNestedOneWithoutClub_Club_founderToPersonInput | No |
| Version | VersionCreateNestedOneWithoutClubInput | No |
| Person_Club_vice_chairmanToPerson | PersonCreateNestedOneWithoutClub_Club_vice_chairmanToPersonInput | No |
| Contact_Contact_clubToClub | ContactCreateNestedManyWithoutClub_Contact_clubToClubInput | No |
| Member | MemberCreateNestedManyWithoutClubInput | No |
| Organization | OrganizationCreateNestedManyWithoutClubInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| name | String | No |
| established_at | DateTime | No |
| contact | Int | No |
| version | String | No |
| founder | Int | No |
| vice_chairman | Int | No |
| Contact_Contact_clubToClub | ContactUncheckedCreateNestedManyWithoutClub_Contact_clubToClubInput | No |
| Member | MemberUncheckedCreateNestedManyWithoutClubInput | No |
| Organization | OrganizationUncheckedCreateNestedManyWithoutClubInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ClubWhereUniqueInput | No |
| create | ClubCreateWithoutPerson_Club_chairmanToPersonInput | ClubUncheckedCreateWithoutPerson_Club_chairmanToPersonInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | ClubCreateManyPerson_Club_chairmanToPersonInput | ClubCreateManyPerson_Club_chairmanToPersonInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | No |
| updated_at | DateTime | No |
| name | String | No |
| established_at | DateTime | No |
| Person_Club_chairmanToPerson | PersonCreateNestedOneWithoutClub_Club_chairmanToPersonInput | No |
| Contact_Club_contactToContact | ContactCreateNestedOneWithoutClub_Club_contactToContactInput | No |
| Version | VersionCreateNestedOneWithoutClubInput | No |
| Person_Club_vice_chairmanToPerson | PersonCreateNestedOneWithoutClub_Club_vice_chairmanToPersonInput | No |
| Contact_Contact_clubToClub | ContactCreateNestedManyWithoutClub_Contact_clubToClubInput | No |
| Member | MemberCreateNestedManyWithoutClubInput | No |
| Organization | OrganizationCreateNestedManyWithoutClubInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| name | String | No |
| established_at | DateTime | No |
| contact | Int | No |
| version | String | No |
| chairman | Int | No |
| vice_chairman | Int | No |
| Contact_Contact_clubToClub | ContactUncheckedCreateNestedManyWithoutClub_Contact_clubToClubInput | No |
| Member | MemberUncheckedCreateNestedManyWithoutClubInput | No |
| Organization | OrganizationUncheckedCreateNestedManyWithoutClubInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ClubWhereUniqueInput | No |
| create | ClubCreateWithoutPerson_Club_founderToPersonInput | ClubUncheckedCreateWithoutPerson_Club_founderToPersonInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | ClubCreateManyPerson_Club_founderToPersonInput | ClubCreateManyPerson_Club_founderToPersonInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | No |
| updated_at | DateTime | No |
| name | String | No |
| established_at | DateTime | No |
| Person_Club_chairmanToPerson | PersonCreateNestedOneWithoutClub_Club_chairmanToPersonInput | No |
| Contact_Club_contactToContact | ContactCreateNestedOneWithoutClub_Club_contactToContactInput | No |
| Person_Club_founderToPerson | PersonCreateNestedOneWithoutClub_Club_founderToPersonInput | No |
| Version | VersionCreateNestedOneWithoutClubInput | No |
| Contact_Contact_clubToClub | ContactCreateNestedManyWithoutClub_Contact_clubToClubInput | No |
| Member | MemberCreateNestedManyWithoutClubInput | No |
| Organization | OrganizationCreateNestedManyWithoutClubInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| name | String | No |
| established_at | DateTime | No |
| contact | Int | No |
| version | String | No |
| chairman | Int | No |
| founder | Int | No |
| Contact_Contact_clubToClub | ContactUncheckedCreateNestedManyWithoutClub_Contact_clubToClubInput | No |
| Member | MemberUncheckedCreateNestedManyWithoutClubInput | No |
| Organization | OrganizationUncheckedCreateNestedManyWithoutClubInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ClubWhereUniqueInput | No |
| create | ClubCreateWithoutPerson_Club_vice_chairmanToPersonInput | ClubUncheckedCreateWithoutPerson_Club_vice_chairmanToPersonInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | ClubCreateManyPerson_Club_vice_chairmanToPersonInput | ClubCreateManyPerson_Club_vice_chairmanToPersonInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| address_line | String | No |
| address_line_1 | String | Null | Yes |
| state | String | No |
| city | String | No |
| zip | String | No |
| phone | String | No |
| phone_1 | String | Null | Yes |
| fax | String | Null | Yes |
| String | Null | Yes | |
| email_1 | String | Null | Yes |
| website | String | Null | Yes |
| social_media | NullableJsonNullValueInput | Json | No |
| version | String | No |
| country | String | Null | Yes |
| club | Int | Null | Yes |
| blood_center | Int | Null | Yes |
| donation | Int | Null | Yes |
| hospital | Int | Null | Yes |
| Ambulance | AmbulanceUncheckedCreateNestedManyWithoutContactInput | No |
| BloodCenter_BloodCenter_contactToContact | BloodCenterUncheckedCreateNestedManyWithoutContact_BloodCenter_contactToContactInput | No |
| Club_Club_contactToContact | ClubUncheckedCreateNestedManyWithoutContact_Club_contactToContactInput | No |
| Hospital_Hospital_contactToContact | HospitalUncheckedCreateNestedManyWithoutContact_Hospital_contactToContactInput | No |
| Person_Person_contact_idToContact | PersonUncheckedCreateNestedManyWithoutContact_Person_contact_idToContactInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ContactWhereUniqueInput | No |
| create | ContactCreateWithoutPerson_Contact_personToPersonInput | ContactUncheckedCreateWithoutPerson_Contact_personToPersonInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | ContactCreateManyPerson_Contact_personToPersonInput | ContactCreateManyPerson_Contact_personToPersonInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | No |
| updated_at | DateTime | No |
| amount | Int | No |
| donated_at | DateTime | No |
| Contact | ContactCreateNestedManyWithoutDonationInput | No |
| Member | MemberCreateNestedOneWithoutDonationInput | No |
| Organization | OrganizationCreateNestedOneWithoutDonationInput | No |
| Version | VersionCreateNestedOneWithoutDonationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| amount | Int | No |
| donated_at | DateTime | No |
| version | String | No |
| member | Int | No |
| organization | Int | No |
| Contact | ContactUncheckedCreateNestedManyWithoutDonationInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | DonationWhereUniqueInput | No |
| create | DonationCreateWithoutPersonInput | DonationUncheckedCreateWithoutPersonInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | DonationCreateManyPersonInput | DonationCreateManyPersonInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | No |
| updated_at | DateTime | No |
| allergies | String | Null | Yes |
| complications | String | Null | Yes |
| medications | String | Null | Yes |
| blood_disorders | String | Null | Yes |
| infectious_diseases | String | Null | Yes |
| last_blood_donation | DateTime | Null | Yes |
| medical_conditions | String | Null | Yes |
| Donation | DonationCreateNestedManyWithoutMemberInput | No |
| Club | ClubCreateNestedOneWithoutMemberInput | No |
| Version | VersionCreateNestedOneWithoutMemberInput | No |
| Request | RequestCreateNestedManyWithoutMemberInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| version | String | No |
| allergies | String | Null | Yes |
| complications | String | Null | Yes |
| medications | String | Null | Yes |
| blood_disorders | String | Null | Yes |
| club_id | Int | Null | Yes |
| infectious_diseases | String | Null | Yes |
| last_blood_donation | DateTime | Null | Yes |
| medical_conditions | String | Null | Yes |
| Donation | DonationUncheckedCreateNestedManyWithoutMemberInput | No |
| Request | RequestUncheckedCreateNestedManyWithoutMemberInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | MemberWhereUniqueInput | No |
| create | MemberCreateWithoutPersonInput | MemberUncheckedCreateWithoutPersonInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | MemberCreateManyPersonInput | MemberCreateManyPersonInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | No |
| updated_at | DateTime | No |
| org_type | OrgType | No |
| org_id | Int | No |
| Volunteer | JsonNullValueInput | Json | No |
| Ambulance | AmbulanceCreateNestedManyWithoutOrganizationInput | No |
| Donation | DonationCreateNestedManyWithoutOrganizationInput | No |
| Club | ClubCreateNestedOneWithoutOrganizationInput | No |
| OrganizationSettings | OrganizationSettingsCreateNestedOneWithoutOrganizationInput | No |
| Version | VersionCreateNestedOneWithoutOrganizationInput | No |
| Support | SupportCreateNestedManyWithoutOrganizationInput | No |
| SupportMessage | SupportMessageCreateNestedManyWithoutOrganizationInput | No |
| Team | TeamCreateNestedManyWithoutOrganizationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| org_type | OrgType | No |
| org_id | Int | No |
| Volunteer | JsonNullValueInput | Json | No |
| organizationSettingsId | Int | No |
| clubId | Int | Null | Yes |
| version | String | No |
| Ambulance | AmbulanceUncheckedCreateNestedManyWithoutOrganizationInput | No |
| Donation | DonationUncheckedCreateNestedManyWithoutOrganizationInput | No |
| Support | SupportUncheckedCreateNestedManyWithoutOrganizationInput | No |
| SupportMessage | SupportMessageUncheckedCreateNestedManyWithoutOrganizationInput | No |
| Team | TeamUncheckedCreateNestedManyWithoutOrganizationInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrganizationWhereUniqueInput | No |
| create | OrganizationCreateWithoutPersonInput | OrganizationUncheckedCreateWithoutPersonInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | OrganizationCreateManyPersonInput | OrganizationCreateManyPersonInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| address_line | String | No |
| address_line_1 | String | Null | Yes |
| state | String | No |
| city | String | No |
| zip | String | No |
| phone | String | No |
| phone_1 | String | Null | Yes |
| fax | String | Null | Yes |
| String | Null | Yes | |
| email_1 | String | Null | Yes |
| website | String | Null | Yes |
| social_media | NullableJsonNullValueInput | Json | No |
| version | String | No |
| country | String | Null | Yes |
| person | Int | Null | Yes |
| club | Int | Null | Yes |
| blood_center | Int | Null | Yes |
| donation | Int | Null | Yes |
| hospital | Int | Null | Yes |
| Ambulance | AmbulanceUncheckedCreateNestedManyWithoutContactInput | No |
| BloodCenter_BloodCenter_contactToContact | BloodCenterUncheckedCreateNestedManyWithoutContact_BloodCenter_contactToContactInput | No |
| Club_Club_contactToContact | ClubUncheckedCreateNestedManyWithoutContact_Club_contactToContactInput | No |
| Hospital_Hospital_contactToContact | HospitalUncheckedCreateNestedManyWithoutContact_Hospital_contactToContactInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ContactWhereUniqueInput | No |
| create | ContactCreateWithoutPerson_Person_contact_idToContactInput | ContactUncheckedCreateWithoutPerson_Person_contact_idToContactInput | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | No |
| updated_at | DateTime | No |
| started_at | DateTime | No |
| ended_at | DateTime | No |
| status | String | No |
| Person_Team_membersToPerson | PersonCreateNestedOneWithoutTeam_Team_membersToPersonInput | No |
| Organization | OrganizationCreateNestedOneWithoutTeamInput | No |
| Version | VersionCreateNestedOneWithoutTeamInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| started_at | DateTime | No |
| ended_at | DateTime | No |
| organization | Int | No |
| version | String | No |
| members | Int | No |
| status | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | TeamWhereUniqueInput | No |
| create | TeamCreateWithoutPerson_Person_teamIdToTeamInput | TeamUncheckedCreateWithoutPerson_Person_teamIdToTeamInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | VersionWhereUniqueInput | No |
| create | VersionCreateWithoutPersonInput | VersionUncheckedCreateWithoutPersonInput | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | No |
| updated_at | DateTime | No |
| health_issue | String | No |
| blood_group | BloodGroup | No |
| quantity | Int | No |
| donation_type | String | No |
| datetime | DateTime | No |
| hospital_name | String | No |
| hospital_address | String | No |
| hospital_phone | String | No |
| hospital_email | String | No |
| Member | MemberCreateNestedOneWithoutRequestInput | No |
| Version | VersionCreateNestedOneWithoutRequestInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| health_issue | String | No |
| blood_group | BloodGroup | No |
| quantity | Int | No |
| donation_type | String | No |
| datetime | DateTime | No |
| hospital_name | String | No |
| hospital_address | String | No |
| hospital_phone | String | No |
| hospital_email | String | No |
| version | String | No |
| memberId | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | RequestWhereUniqueInput | No |
| create | RequestCreateWithoutPersonInput | RequestUncheckedCreateWithoutPersonInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | RequestCreateManyPersonInput | RequestCreateManyPersonInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| message | String | No |
| Organization | OrganizationCreateNestedOneWithoutSupportMessageInput | No |
| Support | SupportCreateNestedOneWithoutSupportMessageInput | No |
| Version | VersionCreateNestedOneWithoutSupportMessageInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| organization | Int | No |
| support | Int | No |
| message | String | No |
| version | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | SupportMessageWhereUniqueInput | No |
| create | SupportMessageCreateWithoutPersonInput | SupportMessageUncheckedCreateWithoutPersonInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | SupportMessageCreateManyPersonInput | SupportMessageCreateManyPersonInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | No |
| updated_at | DateTime | No |
| started_at | DateTime | No |
| ended_at | DateTime | No |
| status | String | No |
| Person_Person_teamIdToTeam | PersonCreateNestedManyWithoutTeam_Person_teamIdToTeamInput | No |
| Organization | OrganizationCreateNestedOneWithoutTeamInput | No |
| Version | VersionCreateNestedOneWithoutTeamInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| started_at | DateTime | No |
| ended_at | DateTime | No |
| organization | Int | No |
| version | String | No |
| status | String | No |
| Person_Person_teamIdToTeam | PersonUncheckedCreateNestedManyWithoutTeam_Person_teamIdToTeamInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TeamWhereUniqueInput | No |
| create | TeamCreateWithoutPerson_Team_membersToPersonInput | TeamUncheckedCreateWithoutPerson_Team_membersToPersonInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | TeamCreateManyPerson_Team_membersToPersonInput | TeamCreateManyPerson_Team_membersToPersonInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| username | String | Null | Yes |
| String | No | |
| password | String | No |
| status | AccountStatus | No |
| ip | String | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| SecurityQuestion | SecurityQuestionCreateNestedManyWithoutUserInput | No |
| LoginRecord | LoginRecordCreateNestedOneWithoutUserInput | No |
| SocialMediaLinks | SocialMediaLinksCreateNestedOneWithoutUserInput | No |
| TwoFactorAuth | TwoFactorAuthCreateNestedOneWithoutUserInput | No |
| UserSettings | UserSettingsCreateNestedOneWithoutUserInput | No |
| Version | VersionCreateNestedOneWithoutUserInput | No |
| UserRole | UserRoleCreateNestedManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| username | String | Null | Yes |
| String | No | |
| password | String | No |
| status | AccountStatus | No |
| ip | String | No |
| two_factor_auth | Int | No |
| social_login | Int | No |
| logins | Int | No |
| settings | Int | No |
| version | String | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| SecurityQuestion | SecurityQuestionUncheckedCreateNestedManyWithoutUserInput | No |
| UserRole | UserRoleUncheckedCreateNestedManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutPersonInput | UserUncheckedCreateWithoutPersonInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | UserCreateManyPersonInput | UserCreateManyPersonInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | AmbulanceWhereUniqueInput | No |
| update | AmbulanceUpdateWithoutPersonInput | AmbulanceUncheckedUpdateWithoutPersonInput | No |
| create | AmbulanceCreateWithoutPersonInput | AmbulanceUncheckedCreateWithoutPersonInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | AmbulanceWhereUniqueInput | No |
| data | AmbulanceUpdateWithoutPersonInput | AmbulanceUncheckedUpdateWithoutPersonInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | AmbulanceScalarWhereInput | No |
| data | AmbulanceUpdateManyMutationInput | AmbulanceUncheckedUpdateManyWithoutPersonInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BloodCenterWhereUniqueInput | No |
| update | BloodCenterUpdateWithoutPersonInput | BloodCenterUncheckedUpdateWithoutPersonInput | No |
| create | BloodCenterCreateWithoutPersonInput | BloodCenterUncheckedCreateWithoutPersonInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BloodCenterWhereUniqueInput | No |
| data | BloodCenterUpdateWithoutPersonInput | BloodCenterUncheckedUpdateWithoutPersonInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BloodCenterScalarWhereInput | No |
| data | BloodCenterUpdateManyMutationInput | BloodCenterUncheckedUpdateManyWithoutPersonInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BloodDonationWhereUniqueInput | No |
| update | BloodDonationUpdateWithoutPersonInput | BloodDonationUncheckedUpdateWithoutPersonInput | No |
| create | BloodDonationCreateWithoutPersonInput | BloodDonationUncheckedCreateWithoutPersonInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BloodDonationWhereUniqueInput | No |
| data | BloodDonationUpdateWithoutPersonInput | BloodDonationUncheckedUpdateWithoutPersonInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BloodDonationScalarWhereInput | No |
| data | BloodDonationUpdateManyMutationInput | BloodDonationUncheckedUpdateManyWithoutPersonInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ClubWhereUniqueInput | No |
| data | ClubUpdateWithoutPerson_Club_chairmanToPersonInput | ClubUncheckedUpdateWithoutPerson_Club_chairmanToPersonInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ClubScalarWhereInput | No |
| data | ClubUpdateManyMutationInput | ClubUncheckedUpdateManyWithoutPerson_Club_chairmanToPersonInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ClubWhereUniqueInput | No |
| data | ClubUpdateWithoutPerson_Club_founderToPersonInput | ClubUncheckedUpdateWithoutPerson_Club_founderToPersonInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ClubScalarWhereInput | No |
| data | ClubUpdateManyMutationInput | ClubUncheckedUpdateManyWithoutPerson_Club_founderToPersonInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ClubWhereUniqueInput | No |
| data | ClubUpdateWithoutPerson_Club_vice_chairmanToPersonInput | ClubUncheckedUpdateWithoutPerson_Club_vice_chairmanToPersonInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ClubScalarWhereInput | No |
| data | ClubUpdateManyMutationInput | ClubUncheckedUpdateManyWithoutPerson_Club_vice_chairmanToPersonInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ContactWhereUniqueInput | No |
| data | ContactUpdateWithoutPerson_Contact_personToPersonInput | ContactUncheckedUpdateWithoutPerson_Contact_personToPersonInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ContactScalarWhereInput | No |
| data | ContactUpdateManyMutationInput | ContactUncheckedUpdateManyWithoutPerson_Contact_personToPersonInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | DonationWhereUniqueInput | No |
| update | DonationUpdateWithoutPersonInput | DonationUncheckedUpdateWithoutPersonInput | No |
| create | DonationCreateWithoutPersonInput | DonationUncheckedCreateWithoutPersonInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | DonationWhereUniqueInput | No |
| data | DonationUpdateWithoutPersonInput | DonationUncheckedUpdateWithoutPersonInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | DonationScalarWhereInput | No |
| data | DonationUpdateManyMutationInput | DonationUncheckedUpdateManyWithoutPersonInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | MemberWhereUniqueInput | No |
| update | MemberUpdateWithoutPersonInput | MemberUncheckedUpdateWithoutPersonInput | No |
| create | MemberCreateWithoutPersonInput | MemberUncheckedCreateWithoutPersonInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | MemberWhereUniqueInput | No |
| data | MemberUpdateWithoutPersonInput | MemberUncheckedUpdateWithoutPersonInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | MemberScalarWhereInput | No |
| data | MemberUpdateManyMutationInput | MemberUncheckedUpdateManyWithoutPersonInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrganizationWhereUniqueInput | No |
| update | OrganizationUpdateWithoutPersonInput | OrganizationUncheckedUpdateWithoutPersonInput | No |
| create | OrganizationCreateWithoutPersonInput | OrganizationUncheckedCreateWithoutPersonInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrganizationWhereUniqueInput | No |
| data | OrganizationUpdateWithoutPersonInput | OrganizationUncheckedUpdateWithoutPersonInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrganizationScalarWhereInput | No |
| data | OrganizationUpdateManyMutationInput | OrganizationUncheckedUpdateManyWithoutPersonInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ContactWhereInput | No |
| data | ContactUpdateWithoutPerson_Person_contact_idToContactInput | ContactUncheckedUpdateWithoutPerson_Person_contact_idToContactInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | TeamUpdateWithoutPerson_Person_teamIdToTeamInput | TeamUncheckedUpdateWithoutPerson_Person_teamIdToTeamInput | No |
| create | TeamCreateWithoutPerson_Person_teamIdToTeamInput | TeamUncheckedCreateWithoutPerson_Person_teamIdToTeamInput | No |
| where | TeamWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TeamWhereInput | No |
| data | TeamUpdateWithoutPerson_Person_teamIdToTeamInput | TeamUncheckedUpdateWithoutPerson_Person_teamIdToTeamInput | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| started_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| ended_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| status | String | StringFieldUpdateOperationsInput | No |
| Person_Team_membersToPerson | PersonUpdateOneRequiredWithoutTeam_Team_membersToPersonNestedInput | No |
| Organization | OrganizationUpdateOneRequiredWithoutTeamNestedInput | No |
| Version | VersionUpdateOneRequiredWithoutTeamNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| started_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| ended_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| organization | Int | IntFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| members | Int | IntFieldUpdateOperationsInput | No |
| status | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | VersionUpdateWithoutPersonInput | VersionUncheckedUpdateWithoutPersonInput | No |
| create | VersionCreateWithoutPersonInput | VersionUncheckedCreateWithoutPersonInput | No |
| where | VersionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | VersionWhereInput | No |
| data | VersionUpdateWithoutPersonInput | VersionUncheckedUpdateWithoutPersonInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RequestWhereUniqueInput | No |
| update | RequestUpdateWithoutPersonInput | RequestUncheckedUpdateWithoutPersonInput | No |
| create | RequestCreateWithoutPersonInput | RequestUncheckedCreateWithoutPersonInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RequestWhereUniqueInput | No |
| data | RequestUpdateWithoutPersonInput | RequestUncheckedUpdateWithoutPersonInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RequestScalarWhereInput | No |
| data | RequestUpdateManyMutationInput | RequestUncheckedUpdateManyWithoutPersonInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | SupportMessageWhereUniqueInput | No |
| update | SupportMessageUpdateWithoutPersonInput | SupportMessageUncheckedUpdateWithoutPersonInput | No |
| create | SupportMessageCreateWithoutPersonInput | SupportMessageUncheckedCreateWithoutPersonInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | SupportMessageWhereUniqueInput | No |
| data | SupportMessageUpdateWithoutPersonInput | SupportMessageUncheckedUpdateWithoutPersonInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | SupportMessageScalarWhereInput | No |
| data | SupportMessageUpdateManyMutationInput | SupportMessageUncheckedUpdateManyWithoutPersonInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TeamWhereUniqueInput | No |
| data | TeamUpdateWithoutPerson_Team_membersToPersonInput | TeamUncheckedUpdateWithoutPerson_Team_membersToPersonInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TeamScalarWhereInput | No |
| data | TeamUpdateManyMutationInput | TeamUncheckedUpdateManyWithoutPerson_Team_membersToPersonInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| update | UserUpdateWithoutPersonInput | UserUncheckedUpdateWithoutPersonInput | No |
| create | UserCreateWithoutPersonInput | UserUncheckedCreateWithoutPersonInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| data | UserUpdateWithoutPersonInput | UserUncheckedUpdateWithoutPersonInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserScalarWhereInput | No |
| data | UserUpdateManyMutationInput | UserUncheckedUpdateManyWithoutPersonInput | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | No |
| updated_at | DateTime | No |
| allergies | String | Null | Yes |
| complications | String | Null | Yes |
| medications | String | Null | Yes |
| blood_disorders | String | Null | Yes |
| infectious_diseases | String | Null | Yes |
| last_blood_donation | DateTime | Null | Yes |
| medical_conditions | String | Null | Yes |
| Donation | DonationCreateNestedManyWithoutMemberInput | No |
| Club | ClubCreateNestedOneWithoutMemberInput | No |
| Person | PersonCreateNestedOneWithoutMemberInput | No |
| Version | VersionCreateNestedOneWithoutMemberInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| version | String | No |
| allergies | String | Null | Yes |
| complications | String | Null | Yes |
| medications | String | Null | Yes |
| blood_disorders | String | Null | Yes |
| club_id | Int | Null | Yes |
| infectious_diseases | String | Null | Yes |
| last_blood_donation | DateTime | Null | Yes |
| medical_conditions | String | Null | Yes |
| person_id | Int | Null | Yes |
| Donation | DonationUncheckedCreateNestedManyWithoutMemberInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | MemberWhereUniqueInput | No |
| create | MemberCreateWithoutRequestInput | MemberUncheckedCreateWithoutRequestInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PersonWhereUniqueInput | No |
| create | PersonCreateWithoutRequestInput | PersonUncheckedCreateWithoutRequestInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | VersionWhereUniqueInput | No |
| create | VersionCreateWithoutRequestInput | VersionUncheckedCreateWithoutRequestInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | MemberUpdateWithoutRequestInput | MemberUncheckedUpdateWithoutRequestInput | No |
| create | MemberCreateWithoutRequestInput | MemberUncheckedCreateWithoutRequestInput | No |
| where | MemberWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | MemberWhereInput | No |
| data | MemberUpdateWithoutRequestInput | MemberUncheckedUpdateWithoutRequestInput | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| allergies | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| complications | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| medications | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| blood_disorders | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| infectious_diseases | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| last_blood_donation | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| medical_conditions | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Donation | DonationUpdateManyWithoutMemberNestedInput | No |
| Club | ClubUpdateOneWithoutMemberNestedInput | No |
| Person | PersonUpdateOneWithoutMemberNestedInput | No |
| Version | VersionUpdateOneRequiredWithoutMemberNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| allergies | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| complications | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| medications | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| blood_disorders | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| club_id | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| infectious_diseases | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| last_blood_donation | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| medical_conditions | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| person_id | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Donation | DonationUncheckedUpdateManyWithoutMemberNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | PersonUpdateWithoutRequestInput | PersonUncheckedUpdateWithoutRequestInput | No |
| create | PersonCreateWithoutRequestInput | PersonUncheckedCreateWithoutRequestInput | No |
| where | PersonWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PersonWhereInput | No |
| data | PersonUpdateWithoutRequestInput | PersonUncheckedUpdateWithoutRequestInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | VersionUpdateWithoutRequestInput | VersionUncheckedUpdateWithoutRequestInput | No |
| create | VersionCreateWithoutRequestInput | VersionUncheckedCreateWithoutRequestInput | No |
| where | VersionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | VersionWhereInput | No |
| data | VersionUpdateWithoutRequestInput | VersionUncheckedUpdateWithoutRequestInput | No |
| Name | Type | Nullable |
|---|---|---|
| username | String | Null | Yes |
| String | No | |
| password | String | No |
| status | AccountStatus | No |
| ip | String | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| LoginRecord | LoginRecordCreateNestedOneWithoutUserInput | No |
| Person | PersonCreateNestedOneWithoutUserInput | No |
| SocialMediaLinks | SocialMediaLinksCreateNestedOneWithoutUserInput | No |
| TwoFactorAuth | TwoFactorAuthCreateNestedOneWithoutUserInput | No |
| UserSettings | UserSettingsCreateNestedOneWithoutUserInput | No |
| Version | VersionCreateNestedOneWithoutUserInput | No |
| UserRole | UserRoleCreateNestedManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| username | String | Null | Yes |
| String | No | |
| password | String | No |
| status | AccountStatus | No |
| ip | String | No |
| two_factor_auth | Int | No |
| social_login | Int | No |
| logins | Int | No |
| person | Int | No |
| settings | Int | No |
| version | String | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| UserRole | UserRoleUncheckedCreateNestedManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutSecurityQuestionInput | UserUncheckedCreateWithoutSecurityQuestionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | VersionWhereUniqueInput | No |
| create | VersionCreateWithoutSecurityQuestionInput | VersionUncheckedCreateWithoutSecurityQuestionInput | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | No |
| updated_at | DateTime | No |
| language | Language | No |
| time_format | TimeFormat | No |
| date_format | DateFormat | No |
| timezone | Timezone | No |
| theme | Theme | Null | Yes |
| email_notifications | Boolean | No |
| phone_notification | Boolean | No |
| push_notifications | Boolean | No |
| two_factor_auth | Boolean | Null | Yes |
| high_contrast_mode | Boolean | Null | Yes |
| in_app_notifications | Boolean | Null | Yes |
| key_board_shortcut | Boolean | Null | Yes |
| notification_frequency | String | Null | Yes |
| notification_sound | String | Null | Yes |
| notification_vibrate | Boolean | Null | Yes |
| password_reset | Boolean | Null | Yes |
| User | UserCreateNestedManyWithoutUserSettingsInput | No |
| LoginRecord | LoginRecordCreateNestedOneWithoutUserSettingsInput | No |
| Version | VersionCreateNestedOneWithoutUserSettingsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| language | Language | No |
| time_format | TimeFormat | No |
| date_format | DateFormat | No |
| timezone | Timezone | No |
| theme | Theme | Null | Yes |
| email_notifications | Boolean | No |
| phone_notification | Boolean | No |
| push_notifications | Boolean | No |
| two_factor_auth | Boolean | Null | Yes |
| login_record_id | Int | No |
| high_contrast_mode | Boolean | Null | Yes |
| in_app_notifications | Boolean | Null | Yes |
| key_board_shortcut | Boolean | Null | Yes |
| notification_frequency | String | Null | Yes |
| notification_sound | String | Null | Yes |
| notification_vibrate | Boolean | Null | Yes |
| password_reset | Boolean | Null | Yes |
| version | String | No |
| User | UserUncheckedCreateNestedManyWithoutUserSettingsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserSettingsWhereUniqueInput | No |
| create | UserSettingsCreateWithoutSecurityQuestionInput | UserSettingsUncheckedCreateWithoutSecurityQuestionInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | UserSettingsCreateManySecurityQuestionInput | UserSettingsCreateManySecurityQuestionInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutSecurityQuestionInput | UserUncheckedUpdateWithoutSecurityQuestionInput | No |
| create | UserCreateWithoutSecurityQuestionInput | UserUncheckedCreateWithoutSecurityQuestionInput | No |
| where | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereInput | No |
| data | UserUpdateWithoutSecurityQuestionInput | UserUncheckedUpdateWithoutSecurityQuestionInput | No |
| Name | Type | Nullable |
|---|---|---|
| username | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| String | StringFieldUpdateOperationsInput | No | |
| password | String | StringFieldUpdateOperationsInput | No |
| status | AccountStatus | EnumAccountStatusFieldUpdateOperationsInput | No |
| ip | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| LoginRecord | LoginRecordUpdateOneRequiredWithoutUserNestedInput | No |
| Person | PersonUpdateOneRequiredWithoutUserNestedInput | No |
| SocialMediaLinks | SocialMediaLinksUpdateOneRequiredWithoutUserNestedInput | No |
| TwoFactorAuth | TwoFactorAuthUpdateOneRequiredWithoutUserNestedInput | No |
| UserSettings | UserSettingsUpdateOneRequiredWithoutUserNestedInput | No |
| Version | VersionUpdateOneRequiredWithoutUserNestedInput | No |
| UserRole | UserRoleUpdateManyWithoutUserNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| username | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| String | StringFieldUpdateOperationsInput | No | |
| password | String | StringFieldUpdateOperationsInput | No |
| status | AccountStatus | EnumAccountStatusFieldUpdateOperationsInput | No |
| ip | String | StringFieldUpdateOperationsInput | No |
| two_factor_auth | Int | IntFieldUpdateOperationsInput | No |
| social_login | Int | IntFieldUpdateOperationsInput | No |
| logins | Int | IntFieldUpdateOperationsInput | No |
| person | Int | IntFieldUpdateOperationsInput | No |
| settings | Int | IntFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| UserRole | UserRoleUncheckedUpdateManyWithoutUserNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | VersionUpdateWithoutSecurityQuestionInput | VersionUncheckedUpdateWithoutSecurityQuestionInput | No |
| create | VersionCreateWithoutSecurityQuestionInput | VersionUncheckedCreateWithoutSecurityQuestionInput | No |
| where | VersionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | VersionWhereInput | No |
| data | VersionUpdateWithoutSecurityQuestionInput | VersionUncheckedUpdateWithoutSecurityQuestionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserSettingsWhereUniqueInput | No |
| data | UserSettingsUpdateWithoutSecurityQuestionInput | UserSettingsUncheckedUpdateWithoutSecurityQuestionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserSettingsScalarWhereInput | No |
| data | UserSettingsUpdateManyMutationInput | UserSettingsUncheckedUpdateManyWithoutSecurityQuestionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | VersionWhereUniqueInput | No |
| create | VersionCreateWithoutSocialMediaLinksInput | VersionUncheckedCreateWithoutSocialMediaLinksInput | No |
| Name | Type | Nullable |
|---|---|---|
| username | String | Null | Yes |
| String | No | |
| password | String | No |
| status | AccountStatus | No |
| ip | String | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| SecurityQuestion | SecurityQuestionCreateNestedManyWithoutUserInput | No |
| LoginRecord | LoginRecordCreateNestedOneWithoutUserInput | No |
| Person | PersonCreateNestedOneWithoutUserInput | No |
| TwoFactorAuth | TwoFactorAuthCreateNestedOneWithoutUserInput | No |
| UserSettings | UserSettingsCreateNestedOneWithoutUserInput | No |
| Version | VersionCreateNestedOneWithoutUserInput | No |
| UserRole | UserRoleCreateNestedManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| username | String | Null | Yes |
| String | No | |
| password | String | No |
| status | AccountStatus | No |
| ip | String | No |
| two_factor_auth | Int | No |
| logins | Int | No |
| person | Int | No |
| settings | Int | No |
| version | String | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| SecurityQuestion | SecurityQuestionUncheckedCreateNestedManyWithoutUserInput | No |
| UserRole | UserRoleUncheckedCreateNestedManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutSocialMediaLinksInput | UserUncheckedCreateWithoutSocialMediaLinksInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | UserCreateManySocialMediaLinksInput | UserCreateManySocialMediaLinksInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| update | VersionUpdateWithoutSocialMediaLinksInput | VersionUncheckedUpdateWithoutSocialMediaLinksInput | No |
| create | VersionCreateWithoutSocialMediaLinksInput | VersionUncheckedCreateWithoutSocialMediaLinksInput | No |
| where | VersionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | VersionWhereInput | No |
| data | VersionUpdateWithoutSocialMediaLinksInput | VersionUncheckedUpdateWithoutSocialMediaLinksInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| update | UserUpdateWithoutSocialMediaLinksInput | UserUncheckedUpdateWithoutSocialMediaLinksInput | No |
| create | UserCreateWithoutSocialMediaLinksInput | UserUncheckedCreateWithoutSocialMediaLinksInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| data | UserUpdateWithoutSocialMediaLinksInput | UserUncheckedUpdateWithoutSocialMediaLinksInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserScalarWhereInput | No |
| data | UserUpdateManyMutationInput | UserUncheckedUpdateManyWithoutSocialMediaLinksInput | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | No |
| updated_at | DateTime | No |
| org_type | OrgType | No |
| org_id | Int | No |
| Volunteer | JsonNullValueInput | Json | No |
| Ambulance | AmbulanceCreateNestedManyWithoutOrganizationInput | No |
| Donation | DonationCreateNestedManyWithoutOrganizationInput | No |
| Club | ClubCreateNestedOneWithoutOrganizationInput | No |
| OrganizationSettings | OrganizationSettingsCreateNestedOneWithoutOrganizationInput | No |
| Person | PersonCreateNestedOneWithoutOrganizationInput | No |
| Version | VersionCreateNestedOneWithoutOrganizationInput | No |
| SupportMessage | SupportMessageCreateNestedManyWithoutOrganizationInput | No |
| Team | TeamCreateNestedManyWithoutOrganizationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| org_type | OrgType | No |
| org_id | Int | No |
| Volunteer | JsonNullValueInput | Json | No |
| personId | Int | No |
| organizationSettingsId | Int | No |
| clubId | Int | Null | Yes |
| version | String | No |
| Ambulance | AmbulanceUncheckedCreateNestedManyWithoutOrganizationInput | No |
| Donation | DonationUncheckedCreateNestedManyWithoutOrganizationInput | No |
| SupportMessage | SupportMessageUncheckedCreateNestedManyWithoutOrganizationInput | No |
| Team | TeamUncheckedCreateNestedManyWithoutOrganizationInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrganizationWhereUniqueInput | No |
| create | OrganizationCreateWithoutSupportInput | OrganizationUncheckedCreateWithoutSupportInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | VersionWhereUniqueInput | No |
| create | VersionCreateWithoutSupportInput | VersionUncheckedCreateWithoutSupportInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| message | String | No |
| Person | PersonCreateNestedOneWithoutSupportMessageInput | No |
| Organization | OrganizationCreateNestedOneWithoutSupportMessageInput | No |
| Version | VersionCreateNestedOneWithoutSupportMessageInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| organization | Int | No |
| message | String | No |
| author | Int | No |
| version | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | SupportMessageWhereUniqueInput | No |
| create | SupportMessageCreateWithoutSupportInput | SupportMessageUncheckedCreateWithoutSupportInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | SupportMessageCreateManySupportInput | SupportMessageCreateManySupportInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| update | OrganizationUpdateWithoutSupportInput | OrganizationUncheckedUpdateWithoutSupportInput | No |
| create | OrganizationCreateWithoutSupportInput | OrganizationUncheckedCreateWithoutSupportInput | No |
| where | OrganizationWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrganizationWhereInput | No |
| data | OrganizationUpdateWithoutSupportInput | OrganizationUncheckedUpdateWithoutSupportInput | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| org_type | OrgType | EnumOrgTypeFieldUpdateOperationsInput | No |
| org_id | Int | IntFieldUpdateOperationsInput | No |
| Volunteer | JsonNullValueInput | Json | No |
| Ambulance | AmbulanceUpdateManyWithoutOrganizationNestedInput | No |
| Donation | DonationUpdateManyWithoutOrganizationNestedInput | No |
| Club | ClubUpdateOneWithoutOrganizationNestedInput | No |
| OrganizationSettings | OrganizationSettingsUpdateOneRequiredWithoutOrganizationNestedInput | No |
| Person | PersonUpdateOneRequiredWithoutOrganizationNestedInput | No |
| Version | VersionUpdateOneRequiredWithoutOrganizationNestedInput | No |
| SupportMessage | SupportMessageUpdateManyWithoutOrganizationNestedInput | No |
| Team | TeamUpdateManyWithoutOrganizationNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| org_type | OrgType | EnumOrgTypeFieldUpdateOperationsInput | No |
| org_id | Int | IntFieldUpdateOperationsInput | No |
| Volunteer | JsonNullValueInput | Json | No |
| personId | Int | IntFieldUpdateOperationsInput | No |
| organizationSettingsId | Int | IntFieldUpdateOperationsInput | No |
| clubId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| version | String | StringFieldUpdateOperationsInput | No |
| Ambulance | AmbulanceUncheckedUpdateManyWithoutOrganizationNestedInput | No |
| Donation | DonationUncheckedUpdateManyWithoutOrganizationNestedInput | No |
| SupportMessage | SupportMessageUncheckedUpdateManyWithoutOrganizationNestedInput | No |
| Team | TeamUncheckedUpdateManyWithoutOrganizationNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | VersionUpdateWithoutSupportInput | VersionUncheckedUpdateWithoutSupportInput | No |
| create | VersionCreateWithoutSupportInput | VersionUncheckedCreateWithoutSupportInput | No |
| where | VersionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | VersionWhereInput | No |
| data | VersionUpdateWithoutSupportInput | VersionUncheckedUpdateWithoutSupportInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | SupportMessageWhereUniqueInput | No |
| update | SupportMessageUpdateWithoutSupportInput | SupportMessageUncheckedUpdateWithoutSupportInput | No |
| create | SupportMessageCreateWithoutSupportInput | SupportMessageUncheckedCreateWithoutSupportInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | SupportMessageWhereUniqueInput | No |
| data | SupportMessageUpdateWithoutSupportInput | SupportMessageUncheckedUpdateWithoutSupportInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | SupportMessageScalarWhereInput | No |
| data | SupportMessageUpdateManyMutationInput | SupportMessageUncheckedUpdateManyWithoutSupportInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PersonWhereUniqueInput | No |
| create | PersonCreateWithoutSupportMessageInput | PersonUncheckedCreateWithoutSupportMessageInput | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | No |
| updated_at | DateTime | No |
| org_type | OrgType | No |
| org_id | Int | No |
| Volunteer | JsonNullValueInput | Json | No |
| Ambulance | AmbulanceCreateNestedManyWithoutOrganizationInput | No |
| Donation | DonationCreateNestedManyWithoutOrganizationInput | No |
| Club | ClubCreateNestedOneWithoutOrganizationInput | No |
| OrganizationSettings | OrganizationSettingsCreateNestedOneWithoutOrganizationInput | No |
| Person | PersonCreateNestedOneWithoutOrganizationInput | No |
| Version | VersionCreateNestedOneWithoutOrganizationInput | No |
| Support | SupportCreateNestedManyWithoutOrganizationInput | No |
| Team | TeamCreateNestedManyWithoutOrganizationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| org_type | OrgType | No |
| org_id | Int | No |
| Volunteer | JsonNullValueInput | Json | No |
| personId | Int | No |
| organizationSettingsId | Int | No |
| clubId | Int | Null | Yes |
| version | String | No |
| Ambulance | AmbulanceUncheckedCreateNestedManyWithoutOrganizationInput | No |
| Donation | DonationUncheckedCreateNestedManyWithoutOrganizationInput | No |
| Support | SupportUncheckedCreateNestedManyWithoutOrganizationInput | No |
| Team | TeamUncheckedCreateNestedManyWithoutOrganizationInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrganizationWhereUniqueInput | No |
| create | OrganizationCreateWithoutSupportMessageInput | OrganizationUncheckedCreateWithoutSupportMessageInput | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | No |
| updated_at | DateTime | No |
| messages | String | Null | Yes |
| status | String | Null | Yes |
| priority | Int | No |
| subject | String | Null | Yes |
| Organization | OrganizationCreateNestedOneWithoutSupportInput | No |
| Version | VersionCreateNestedOneWithoutSupportInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| version | String | No |
| organization | Int | No |
| messages | String | Null | Yes |
| status | String | Null | Yes |
| priority | Int | No |
| subject | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | SupportWhereUniqueInput | No |
| create | SupportCreateWithoutSupportMessageInput | SupportUncheckedCreateWithoutSupportMessageInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | VersionWhereUniqueInput | No |
| create | VersionCreateWithoutSupportMessageInput | VersionUncheckedCreateWithoutSupportMessageInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | PersonUpdateWithoutSupportMessageInput | PersonUncheckedUpdateWithoutSupportMessageInput | No |
| create | PersonCreateWithoutSupportMessageInput | PersonUncheckedCreateWithoutSupportMessageInput | No |
| where | PersonWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PersonWhereInput | No |
| data | PersonUpdateWithoutSupportMessageInput | PersonUncheckedUpdateWithoutSupportMessageInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | OrganizationUpdateWithoutSupportMessageInput | OrganizationUncheckedUpdateWithoutSupportMessageInput | No |
| create | OrganizationCreateWithoutSupportMessageInput | OrganizationUncheckedCreateWithoutSupportMessageInput | No |
| where | OrganizationWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrganizationWhereInput | No |
| data | OrganizationUpdateWithoutSupportMessageInput | OrganizationUncheckedUpdateWithoutSupportMessageInput | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| org_type | OrgType | EnumOrgTypeFieldUpdateOperationsInput | No |
| org_id | Int | IntFieldUpdateOperationsInput | No |
| Volunteer | JsonNullValueInput | Json | No |
| Ambulance | AmbulanceUpdateManyWithoutOrganizationNestedInput | No |
| Donation | DonationUpdateManyWithoutOrganizationNestedInput | No |
| Club | ClubUpdateOneWithoutOrganizationNestedInput | No |
| OrganizationSettings | OrganizationSettingsUpdateOneRequiredWithoutOrganizationNestedInput | No |
| Person | PersonUpdateOneRequiredWithoutOrganizationNestedInput | No |
| Version | VersionUpdateOneRequiredWithoutOrganizationNestedInput | No |
| Support | SupportUpdateManyWithoutOrganizationNestedInput | No |
| Team | TeamUpdateManyWithoutOrganizationNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| org_type | OrgType | EnumOrgTypeFieldUpdateOperationsInput | No |
| org_id | Int | IntFieldUpdateOperationsInput | No |
| Volunteer | JsonNullValueInput | Json | No |
| personId | Int | IntFieldUpdateOperationsInput | No |
| organizationSettingsId | Int | IntFieldUpdateOperationsInput | No |
| clubId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| version | String | StringFieldUpdateOperationsInput | No |
| Ambulance | AmbulanceUncheckedUpdateManyWithoutOrganizationNestedInput | No |
| Donation | DonationUncheckedUpdateManyWithoutOrganizationNestedInput | No |
| Support | SupportUncheckedUpdateManyWithoutOrganizationNestedInput | No |
| Team | TeamUncheckedUpdateManyWithoutOrganizationNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | SupportUpdateWithoutSupportMessageInput | SupportUncheckedUpdateWithoutSupportMessageInput | No |
| create | SupportCreateWithoutSupportMessageInput | SupportUncheckedCreateWithoutSupportMessageInput | No |
| where | SupportWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | SupportWhereInput | No |
| data | SupportUpdateWithoutSupportMessageInput | SupportUncheckedUpdateWithoutSupportMessageInput | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| messages | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| status | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| priority | Int | IntFieldUpdateOperationsInput | No |
| subject | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Organization | OrganizationUpdateOneRequiredWithoutSupportNestedInput | No |
| Version | VersionUpdateOneRequiredWithoutSupportNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| organization | Int | IntFieldUpdateOperationsInput | No |
| messages | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| status | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| priority | Int | IntFieldUpdateOperationsInput | No |
| subject | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| update | VersionUpdateWithoutSupportMessageInput | VersionUncheckedUpdateWithoutSupportMessageInput | No |
| create | VersionCreateWithoutSupportMessageInput | VersionUncheckedCreateWithoutSupportMessageInput | No |
| where | VersionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | VersionWhereInput | No |
| data | VersionUpdateWithoutSupportMessageInput | VersionUncheckedUpdateWithoutSupportMessageInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PersonWhereUniqueInput | No |
| create | PersonCreateWithoutTeam_Person_teamIdToTeamInput | PersonUncheckedCreateWithoutTeam_Person_teamIdToTeamInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | PersonCreateManyTeam_Person_teamIdToTeamInput | PersonCreateManyTeam_Person_teamIdToTeamInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | PersonWhereUniqueInput | No |
| create | PersonCreateWithoutTeam_Team_membersToPersonInput | PersonUncheckedCreateWithoutTeam_Team_membersToPersonInput | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | No |
| updated_at | DateTime | No |
| org_type | OrgType | No |
| org_id | Int | No |
| Volunteer | JsonNullValueInput | Json | No |
| Ambulance | AmbulanceCreateNestedManyWithoutOrganizationInput | No |
| Donation | DonationCreateNestedManyWithoutOrganizationInput | No |
| Club | ClubCreateNestedOneWithoutOrganizationInput | No |
| OrganizationSettings | OrganizationSettingsCreateNestedOneWithoutOrganizationInput | No |
| Person | PersonCreateNestedOneWithoutOrganizationInput | No |
| Version | VersionCreateNestedOneWithoutOrganizationInput | No |
| Support | SupportCreateNestedManyWithoutOrganizationInput | No |
| SupportMessage | SupportMessageCreateNestedManyWithoutOrganizationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| org_type | OrgType | No |
| org_id | Int | No |
| Volunteer | JsonNullValueInput | Json | No |
| personId | Int | No |
| organizationSettingsId | Int | No |
| clubId | Int | Null | Yes |
| version | String | No |
| Ambulance | AmbulanceUncheckedCreateNestedManyWithoutOrganizationInput | No |
| Donation | DonationUncheckedCreateNestedManyWithoutOrganizationInput | No |
| Support | SupportUncheckedCreateNestedManyWithoutOrganizationInput | No |
| SupportMessage | SupportMessageUncheckedCreateNestedManyWithoutOrganizationInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrganizationWhereUniqueInput | No |
| create | OrganizationCreateWithoutTeamInput | OrganizationUncheckedCreateWithoutTeamInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | VersionWhereUniqueInput | No |
| create | VersionCreateWithoutTeamInput | VersionUncheckedCreateWithoutTeamInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PersonWhereUniqueInput | No |
| data | PersonUpdateWithoutTeam_Person_teamIdToTeamInput | PersonUncheckedUpdateWithoutTeam_Person_teamIdToTeamInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PersonScalarWhereInput | No |
| data | PersonUpdateManyMutationInput | PersonUncheckedUpdateManyWithoutTeam_Person_teamIdToTeamInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PersonWhereInput | No |
| data | PersonUpdateWithoutTeam_Team_membersToPersonInput | PersonUncheckedUpdateWithoutTeam_Team_membersToPersonInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | OrganizationUpdateWithoutTeamInput | OrganizationUncheckedUpdateWithoutTeamInput | No |
| create | OrganizationCreateWithoutTeamInput | OrganizationUncheckedCreateWithoutTeamInput | No |
| where | OrganizationWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrganizationWhereInput | No |
| data | OrganizationUpdateWithoutTeamInput | OrganizationUncheckedUpdateWithoutTeamInput | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| org_type | OrgType | EnumOrgTypeFieldUpdateOperationsInput | No |
| org_id | Int | IntFieldUpdateOperationsInput | No |
| Volunteer | JsonNullValueInput | Json | No |
| Ambulance | AmbulanceUpdateManyWithoutOrganizationNestedInput | No |
| Donation | DonationUpdateManyWithoutOrganizationNestedInput | No |
| Club | ClubUpdateOneWithoutOrganizationNestedInput | No |
| OrganizationSettings | OrganizationSettingsUpdateOneRequiredWithoutOrganizationNestedInput | No |
| Person | PersonUpdateOneRequiredWithoutOrganizationNestedInput | No |
| Version | VersionUpdateOneRequiredWithoutOrganizationNestedInput | No |
| Support | SupportUpdateManyWithoutOrganizationNestedInput | No |
| SupportMessage | SupportMessageUpdateManyWithoutOrganizationNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| org_type | OrgType | EnumOrgTypeFieldUpdateOperationsInput | No |
| org_id | Int | IntFieldUpdateOperationsInput | No |
| Volunteer | JsonNullValueInput | Json | No |
| personId | Int | IntFieldUpdateOperationsInput | No |
| organizationSettingsId | Int | IntFieldUpdateOperationsInput | No |
| clubId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| version | String | StringFieldUpdateOperationsInput | No |
| Ambulance | AmbulanceUncheckedUpdateManyWithoutOrganizationNestedInput | No |
| Donation | DonationUncheckedUpdateManyWithoutOrganizationNestedInput | No |
| Support | SupportUncheckedUpdateManyWithoutOrganizationNestedInput | No |
| SupportMessage | SupportMessageUncheckedUpdateManyWithoutOrganizationNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | VersionUpdateWithoutTeamInput | VersionUncheckedUpdateWithoutTeamInput | No |
| create | VersionCreateWithoutTeamInput | VersionUncheckedCreateWithoutTeamInput | No |
| where | VersionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | VersionWhereInput | No |
| data | VersionUpdateWithoutTeamInput | VersionUncheckedUpdateWithoutTeamInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | VersionWhereUniqueInput | No |
| create | VersionCreateWithoutTwoFactorAuthInput | VersionUncheckedCreateWithoutTwoFactorAuthInput | No |
| Name | Type | Nullable |
|---|---|---|
| username | String | Null | Yes |
| String | No | |
| password | String | No |
| status | AccountStatus | No |
| ip | String | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| SecurityQuestion | SecurityQuestionCreateNestedManyWithoutUserInput | No |
| LoginRecord | LoginRecordCreateNestedOneWithoutUserInput | No |
| Person | PersonCreateNestedOneWithoutUserInput | No |
| SocialMediaLinks | SocialMediaLinksCreateNestedOneWithoutUserInput | No |
| UserSettings | UserSettingsCreateNestedOneWithoutUserInput | No |
| Version | VersionCreateNestedOneWithoutUserInput | No |
| UserRole | UserRoleCreateNestedManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| username | String | Null | Yes |
| String | No | |
| password | String | No |
| status | AccountStatus | No |
| ip | String | No |
| social_login | Int | No |
| logins | Int | No |
| person | Int | No |
| settings | Int | No |
| version | String | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| SecurityQuestion | SecurityQuestionUncheckedCreateNestedManyWithoutUserInput | No |
| UserRole | UserRoleUncheckedCreateNestedManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutTwoFactorAuthInput | UserUncheckedCreateWithoutTwoFactorAuthInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | UserCreateManyTwoFactorAuthInput | UserCreateManyTwoFactorAuthInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| update | VersionUpdateWithoutTwoFactorAuthInput | VersionUncheckedUpdateWithoutTwoFactorAuthInput | No |
| create | VersionCreateWithoutTwoFactorAuthInput | VersionUncheckedCreateWithoutTwoFactorAuthInput | No |
| where | VersionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | VersionWhereInput | No |
| data | VersionUpdateWithoutTwoFactorAuthInput | VersionUncheckedUpdateWithoutTwoFactorAuthInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| update | UserUpdateWithoutTwoFactorAuthInput | UserUncheckedUpdateWithoutTwoFactorAuthInput | No |
| create | UserCreateWithoutTwoFactorAuthInput | UserUncheckedCreateWithoutTwoFactorAuthInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| data | UserUpdateWithoutTwoFactorAuthInput | UserUncheckedUpdateWithoutTwoFactorAuthInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserScalarWhereInput | No |
| data | UserUpdateManyMutationInput | UserUncheckedUpdateManyWithoutTwoFactorAuthInput | No |
| Name | Type | Nullable |
|---|---|---|
| question | String | No |
| answer | String | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Version | VersionCreateNestedOneWithoutSecurityQuestionInput | No |
| UserSettings | UserSettingsCreateNestedManyWithoutSecurityQuestionInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| question | String | No |
| answer | String | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| version | String | No |
| UserSettings | UserSettingsUncheckedCreateNestedManyWithoutSecurityQuestionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | SecurityQuestionWhereUniqueInput | No |
| create | SecurityQuestionCreateWithoutUserInput | SecurityQuestionUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | SecurityQuestionCreateManyUserInput | SecurityQuestionCreateManyUserInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| user | Int | No |
| ip_address | String | No |
| user_agent | String | No |
| login_status | String | No |
| session_id | String | Null | Yes |
| location | String | Null | Yes |
| authentication | AuthenticationMethod | Null | Yes |
| security_tokens | String | Null | Yes |
| logout_timestamp | DateTime | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Device | DeviceCreateNestedOneWithoutLoginRecordInput | No |
| Version | VersionCreateNestedOneWithoutLoginRecordInput | No |
| OrganizationSettings | OrganizationSettingsCreateNestedManyWithoutLoginRecordInput | No |
| UserSettings | UserSettingsCreateNestedManyWithoutLoginRecordInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| user | Int | No |
| ip_address | String | No |
| user_agent | String | No |
| login_status | String | No |
| session_id | String | Null | Yes |
| location | String | Null | Yes |
| authentication | AuthenticationMethod | Null | Yes |
| security_tokens | String | Null | Yes |
| logout_timestamp | DateTime | Null | Yes |
| version | String | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| devices | Int | Null | Yes |
| OrganizationSettings | OrganizationSettingsUncheckedCreateNestedManyWithoutLoginRecordInput | No |
| UserSettings | UserSettingsUncheckedCreateNestedManyWithoutLoginRecordInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | LoginRecordWhereUniqueInput | No |
| create | LoginRecordCreateWithoutUserInput | LoginRecordUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PersonWhereUniqueInput | No |
| create | PersonCreateWithoutUserInput | PersonUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| String | Null | Yes | |
| String | Null | Yes | |
| String | Null | Yes | |
| userId | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Version | VersionCreateNestedOneWithoutSocialMediaLinksInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| String | Null | Yes | |
| String | Null | Yes | |
| String | Null | Yes | |
| userId | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| version | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | SocialMediaLinksWhereUniqueInput | No |
| create | SocialMediaLinksCreateWithoutUserInput | SocialMediaLinksUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| is_enabled | Boolean | No |
| secret_key | String | Null | Yes |
| user_id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Version | VersionCreateNestedOneWithoutTwoFactorAuthInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| is_enabled | Boolean | No |
| secret_key | String | Null | Yes |
| user_id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| version | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | TwoFactorAuthWhereUniqueInput | No |
| create | TwoFactorAuthCreateWithoutUserInput | TwoFactorAuthUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | No |
| updated_at | DateTime | No |
| language | Language | No |
| time_format | TimeFormat | No |
| date_format | DateFormat | No |
| timezone | Timezone | No |
| theme | Theme | Null | Yes |
| email_notifications | Boolean | No |
| phone_notification | Boolean | No |
| push_notifications | Boolean | No |
| two_factor_auth | Boolean | Null | Yes |
| high_contrast_mode | Boolean | Null | Yes |
| in_app_notifications | Boolean | Null | Yes |
| key_board_shortcut | Boolean | Null | Yes |
| notification_frequency | String | Null | Yes |
| notification_sound | String | Null | Yes |
| notification_vibrate | Boolean | Null | Yes |
| password_reset | Boolean | Null | Yes |
| LoginRecord | LoginRecordCreateNestedOneWithoutUserSettingsInput | No |
| SecurityQuestion | SecurityQuestionCreateNestedOneWithoutUserSettingsInput | No |
| Version | VersionCreateNestedOneWithoutUserSettingsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| language | Language | No |
| time_format | TimeFormat | No |
| date_format | DateFormat | No |
| timezone | Timezone | No |
| theme | Theme | Null | Yes |
| email_notifications | Boolean | No |
| phone_notification | Boolean | No |
| push_notifications | Boolean | No |
| two_factor_auth | Boolean | Null | Yes |
| login_record_id | Int | No |
| high_contrast_mode | Boolean | Null | Yes |
| in_app_notifications | Boolean | Null | Yes |
| key_board_shortcut | Boolean | Null | Yes |
| notification_frequency | String | Null | Yes |
| notification_sound | String | Null | Yes |
| notification_vibrate | Boolean | Null | Yes |
| password_reset | Boolean | Null | Yes |
| version | String | No |
| security_question | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | UserSettingsWhereUniqueInput | No |
| create | UserSettingsCreateWithoutUserInput | UserSettingsUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | VersionWhereUniqueInput | No |
| create | VersionCreateWithoutUserInput | VersionUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| name | String | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Version | VersionCreateNestedOneWithoutUserRoleInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| version | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserRoleWhereUniqueInput | No |
| create | UserRoleCreateWithoutUserInput | UserRoleUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | UserRoleCreateManyUserInput | UserRoleCreateManyUserInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | SecurityQuestionWhereUniqueInput | No |
| update | SecurityQuestionUpdateWithoutUserInput | SecurityQuestionUncheckedUpdateWithoutUserInput | No |
| create | SecurityQuestionCreateWithoutUserInput | SecurityQuestionUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | SecurityQuestionWhereUniqueInput | No |
| data | SecurityQuestionUpdateWithoutUserInput | SecurityQuestionUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | SecurityQuestionScalarWhereInput | No |
| data | SecurityQuestionUpdateManyMutationInput | SecurityQuestionUncheckedUpdateManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | SecurityQuestionScalarWhereInput | SecurityQuestionScalarWhereInput[] | No |
| OR | SecurityQuestionScalarWhereInput[] | No |
| NOT | SecurityQuestionScalarWhereInput | SecurityQuestionScalarWhereInput[] | No |
| id | IntFilter | Int | No |
| question | StringFilter | String | No |
| answer | StringFilter | String | No |
| userId | IntFilter | Int | No |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| version | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| update | LoginRecordUpdateWithoutUserInput | LoginRecordUncheckedUpdateWithoutUserInput | No |
| create | LoginRecordCreateWithoutUserInput | LoginRecordUncheckedCreateWithoutUserInput | No |
| where | LoginRecordWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | LoginRecordWhereInput | No |
| data | LoginRecordUpdateWithoutUserInput | LoginRecordUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | PersonUpdateWithoutUserInput | PersonUncheckedUpdateWithoutUserInput | No |
| create | PersonCreateWithoutUserInput | PersonUncheckedCreateWithoutUserInput | No |
| where | PersonWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PersonWhereInput | No |
| data | PersonUpdateWithoutUserInput | PersonUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | SocialMediaLinksUpdateWithoutUserInput | SocialMediaLinksUncheckedUpdateWithoutUserInput | No |
| create | SocialMediaLinksCreateWithoutUserInput | SocialMediaLinksUncheckedCreateWithoutUserInput | No |
| where | SocialMediaLinksWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | SocialMediaLinksWhereInput | No |
| data | SocialMediaLinksUpdateWithoutUserInput | SocialMediaLinksUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| String | NullableStringFieldUpdateOperationsInput | Null | Yes | |
| String | NullableStringFieldUpdateOperationsInput | Null | Yes | |
| String | NullableStringFieldUpdateOperationsInput | Null | Yes | |
| userId | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Version | VersionUpdateOneRequiredWithoutSocialMediaLinksNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| String | NullableStringFieldUpdateOperationsInput | Null | Yes | |
| String | NullableStringFieldUpdateOperationsInput | Null | Yes | |
| String | NullableStringFieldUpdateOperationsInput | Null | Yes | |
| userId | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | TwoFactorAuthUpdateWithoutUserInput | TwoFactorAuthUncheckedUpdateWithoutUserInput | No |
| create | TwoFactorAuthCreateWithoutUserInput | TwoFactorAuthUncheckedCreateWithoutUserInput | No |
| where | TwoFactorAuthWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TwoFactorAuthWhereInput | No |
| data | TwoFactorAuthUpdateWithoutUserInput | TwoFactorAuthUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| is_enabled | Boolean | BoolFieldUpdateOperationsInput | No |
| secret_key | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| user_id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Version | VersionUpdateOneRequiredWithoutTwoFactorAuthNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| is_enabled | Boolean | BoolFieldUpdateOperationsInput | No |
| secret_key | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| user_id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserSettingsUpdateWithoutUserInput | UserSettingsUncheckedUpdateWithoutUserInput | No |
| create | UserSettingsCreateWithoutUserInput | UserSettingsUncheckedCreateWithoutUserInput | No |
| where | UserSettingsWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserSettingsWhereInput | No |
| data | UserSettingsUpdateWithoutUserInput | UserSettingsUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | VersionUpdateWithoutUserInput | VersionUncheckedUpdateWithoutUserInput | No |
| create | VersionCreateWithoutUserInput | VersionUncheckedCreateWithoutUserInput | No |
| where | VersionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | VersionWhereInput | No |
| data | VersionUpdateWithoutUserInput | VersionUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserRoleWhereUniqueInput | No |
| update | UserRoleUpdateWithoutUserInput | UserRoleUncheckedUpdateWithoutUserInput | No |
| create | UserRoleCreateWithoutUserInput | UserRoleUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserRoleWhereUniqueInput | No |
| data | UserRoleUpdateWithoutUserInput | UserRoleUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserRoleScalarWhereInput | No |
| data | UserRoleUpdateManyMutationInput | UserRoleUncheckedUpdateManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | UserRoleScalarWhereInput | UserRoleScalarWhereInput[] | No |
| OR | UserRoleScalarWhereInput[] | No |
| NOT | UserRoleScalarWhereInput | UserRoleScalarWhereInput[] | No |
| id | IntFilter | Int | No |
| name | StringFilter | String | No |
| user_id | IntFilter | Int | No |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| version | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| username | String | Null | Yes |
| String | No | |
| password | String | No |
| status | AccountStatus | No |
| ip | String | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| SecurityQuestion | SecurityQuestionCreateNestedManyWithoutUserInput | No |
| LoginRecord | LoginRecordCreateNestedOneWithoutUserInput | No |
| Person | PersonCreateNestedOneWithoutUserInput | No |
| SocialMediaLinks | SocialMediaLinksCreateNestedOneWithoutUserInput | No |
| TwoFactorAuth | TwoFactorAuthCreateNestedOneWithoutUserInput | No |
| UserSettings | UserSettingsCreateNestedOneWithoutUserInput | No |
| Version | VersionCreateNestedOneWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| username | String | Null | Yes |
| String | No | |
| password | String | No |
| status | AccountStatus | No |
| ip | String | No |
| two_factor_auth | Int | No |
| social_login | Int | No |
| logins | Int | No |
| person | Int | No |
| settings | Int | No |
| version | String | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| SecurityQuestion | SecurityQuestionUncheckedCreateNestedManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutUserRoleInput | UserUncheckedCreateWithoutUserRoleInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | VersionWhereUniqueInput | No |
| create | VersionCreateWithoutUserRoleInput | VersionUncheckedCreateWithoutUserRoleInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutUserRoleInput | UserUncheckedUpdateWithoutUserRoleInput | No |
| create | UserCreateWithoutUserRoleInput | UserUncheckedCreateWithoutUserRoleInput | No |
| where | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereInput | No |
| data | UserUpdateWithoutUserRoleInput | UserUncheckedUpdateWithoutUserRoleInput | No |
| Name | Type | Nullable |
|---|---|---|
| username | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| String | StringFieldUpdateOperationsInput | No | |
| password | String | StringFieldUpdateOperationsInput | No |
| status | AccountStatus | EnumAccountStatusFieldUpdateOperationsInput | No |
| ip | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| SecurityQuestion | SecurityQuestionUpdateManyWithoutUserNestedInput | No |
| LoginRecord | LoginRecordUpdateOneRequiredWithoutUserNestedInput | No |
| Person | PersonUpdateOneRequiredWithoutUserNestedInput | No |
| SocialMediaLinks | SocialMediaLinksUpdateOneRequiredWithoutUserNestedInput | No |
| TwoFactorAuth | TwoFactorAuthUpdateOneRequiredWithoutUserNestedInput | No |
| UserSettings | UserSettingsUpdateOneRequiredWithoutUserNestedInput | No |
| Version | VersionUpdateOneRequiredWithoutUserNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| username | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| String | StringFieldUpdateOperationsInput | No | |
| password | String | StringFieldUpdateOperationsInput | No |
| status | AccountStatus | EnumAccountStatusFieldUpdateOperationsInput | No |
| ip | String | StringFieldUpdateOperationsInput | No |
| two_factor_auth | Int | IntFieldUpdateOperationsInput | No |
| social_login | Int | IntFieldUpdateOperationsInput | No |
| logins | Int | IntFieldUpdateOperationsInput | No |
| person | Int | IntFieldUpdateOperationsInput | No |
| settings | Int | IntFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| SecurityQuestion | SecurityQuestionUncheckedUpdateManyWithoutUserNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | VersionUpdateWithoutUserRoleInput | VersionUncheckedUpdateWithoutUserRoleInput | No |
| create | VersionCreateWithoutUserRoleInput | VersionUncheckedCreateWithoutUserRoleInput | No |
| where | VersionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | VersionWhereInput | No |
| data | VersionUpdateWithoutUserRoleInput | VersionUncheckedUpdateWithoutUserRoleInput | No |
| Name | Type | Nullable |
|---|---|---|
| username | String | Null | Yes |
| String | No | |
| password | String | No |
| status | AccountStatus | No |
| ip | String | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| SecurityQuestion | SecurityQuestionCreateNestedManyWithoutUserInput | No |
| LoginRecord | LoginRecordCreateNestedOneWithoutUserInput | No |
| Person | PersonCreateNestedOneWithoutUserInput | No |
| SocialMediaLinks | SocialMediaLinksCreateNestedOneWithoutUserInput | No |
| TwoFactorAuth | TwoFactorAuthCreateNestedOneWithoutUserInput | No |
| Version | VersionCreateNestedOneWithoutUserInput | No |
| UserRole | UserRoleCreateNestedManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| username | String | Null | Yes |
| String | No | |
| password | String | No |
| status | AccountStatus | No |
| ip | String | No |
| two_factor_auth | Int | No |
| social_login | Int | No |
| logins | Int | No |
| person | Int | No |
| version | String | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| SecurityQuestion | SecurityQuestionUncheckedCreateNestedManyWithoutUserInput | No |
| UserRole | UserRoleUncheckedCreateNestedManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutUserSettingsInput | UserUncheckedCreateWithoutUserSettingsInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | UserCreateManyUserSettingsInput | UserCreateManyUserSettingsInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| user | Int | No |
| ip_address | String | No |
| user_agent | String | No |
| login_status | String | No |
| session_id | String | Null | Yes |
| location | String | Null | Yes |
| authentication | AuthenticationMethod | Null | Yes |
| security_tokens | String | Null | Yes |
| logout_timestamp | DateTime | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Device | DeviceCreateNestedOneWithoutLoginRecordInput | No |
| Version | VersionCreateNestedOneWithoutLoginRecordInput | No |
| OrganizationSettings | OrganizationSettingsCreateNestedManyWithoutLoginRecordInput | No |
| User | UserCreateNestedManyWithoutLoginRecordInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| user | Int | No |
| ip_address | String | No |
| user_agent | String | No |
| login_status | String | No |
| session_id | String | Null | Yes |
| location | String | Null | Yes |
| authentication | AuthenticationMethod | Null | Yes |
| security_tokens | String | Null | Yes |
| logout_timestamp | DateTime | Null | Yes |
| version | String | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| devices | Int | Null | Yes |
| OrganizationSettings | OrganizationSettingsUncheckedCreateNestedManyWithoutLoginRecordInput | No |
| User | UserUncheckedCreateNestedManyWithoutLoginRecordInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | LoginRecordWhereUniqueInput | No |
| create | LoginRecordCreateWithoutUserSettingsInput | LoginRecordUncheckedCreateWithoutUserSettingsInput | No |
| Name | Type | Nullable |
|---|---|---|
| question | String | No |
| answer | String | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| User | UserCreateNestedOneWithoutSecurityQuestionInput | No |
| Version | VersionCreateNestedOneWithoutSecurityQuestionInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| question | String | No |
| answer | String | No |
| userId | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| version | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | SecurityQuestionWhereUniqueInput | No |
| create | SecurityQuestionCreateWithoutUserSettingsInput | SecurityQuestionUncheckedCreateWithoutUserSettingsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | VersionWhereUniqueInput | No |
| create | VersionCreateWithoutUserSettingsInput | VersionUncheckedCreateWithoutUserSettingsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| update | UserUpdateWithoutUserSettingsInput | UserUncheckedUpdateWithoutUserSettingsInput | No |
| create | UserCreateWithoutUserSettingsInput | UserUncheckedCreateWithoutUserSettingsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| data | UserUpdateWithoutUserSettingsInput | UserUncheckedUpdateWithoutUserSettingsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserScalarWhereInput | No |
| data | UserUpdateManyMutationInput | UserUncheckedUpdateManyWithoutUserSettingsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | LoginRecordUpdateWithoutUserSettingsInput | LoginRecordUncheckedUpdateWithoutUserSettingsInput | No |
| create | LoginRecordCreateWithoutUserSettingsInput | LoginRecordUncheckedCreateWithoutUserSettingsInput | No |
| where | LoginRecordWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | LoginRecordWhereInput | No |
| data | LoginRecordUpdateWithoutUserSettingsInput | LoginRecordUncheckedUpdateWithoutUserSettingsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | SecurityQuestionWhereInput | No |
| data | SecurityQuestionUpdateWithoutUserSettingsInput | SecurityQuestionUncheckedUpdateWithoutUserSettingsInput | No |
| Name | Type | Nullable |
|---|---|---|
| question | String | StringFieldUpdateOperationsInput | No |
| answer | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| User | UserUpdateOneRequiredWithoutSecurityQuestionNestedInput | No |
| Version | VersionUpdateOneRequiredWithoutSecurityQuestionNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| question | String | StringFieldUpdateOperationsInput | No |
| answer | String | StringFieldUpdateOperationsInput | No |
| userId | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | VersionUpdateWithoutUserSettingsInput | VersionUncheckedUpdateWithoutUserSettingsInput | No |
| create | VersionCreateWithoutUserSettingsInput | VersionUncheckedCreateWithoutUserSettingsInput | No |
| where | VersionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | VersionWhereInput | No |
| data | VersionUpdateWithoutUserSettingsInput | VersionUncheckedUpdateWithoutUserSettingsInput | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | No |
| updated_at | DateTime | No |
| vehicle_number | String | No |
| ambulance_type | String | Null | Yes |
| equipment | AmbulanceCreateequipmentInput | String | No |
| color | String | Null | Yes |
| Contact | ContactCreateNestedOneWithoutAmbulanceInput | No |
| Organization | OrganizationCreateNestedOneWithoutAmbulanceInput | No |
| Person | PersonCreateNestedOneWithoutAmbulanceInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| vehicle_number | String | No |
| ambulance_type | String | Null | Yes |
| person | Int | No |
| organization | Int | Null | Yes |
| equipment | AmbulanceCreateequipmentInput | String | No |
| contact | Int | Null | Yes |
| color | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | AmbulanceWhereUniqueInput | No |
| create | AmbulanceCreateWithoutVersionInput | AmbulanceUncheckedCreateWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | AmbulanceCreateManyVersionInput | AmbulanceCreateManyVersionInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | No |
| updated_at | DateTime | No |
| established_at | DateTime | No |
| title | String | No |
| Contact_BloodCenter_contactToContact | ContactCreateNestedOneWithoutBloodCenter_BloodCenter_contactToContactInput | No |
| Person | PersonCreateNestedOneWithoutBloodCenterInput | No |
| BloodDonation | BloodDonationCreateNestedManyWithoutBloodCenterInput | No |
| Contact_Contact_blood_centerToBloodCenter | ContactCreateNestedManyWithoutBloodCenter_Contact_blood_centerToBloodCenterInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| established_at | DateTime | No |
| founder | Int | No |
| contact | Int | Null | Yes |
| title | String | No |
| BloodDonation | BloodDonationUncheckedCreateNestedManyWithoutBloodCenterInput | No |
| Contact_Contact_blood_centerToBloodCenter | ContactUncheckedCreateNestedManyWithoutBloodCenter_Contact_blood_centerToBloodCenterInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BloodCenterWhereUniqueInput | No |
| create | BloodCenterCreateWithoutVersionInput | BloodCenterUncheckedCreateWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | BloodCenterCreateManyVersionInput | BloodCenterCreateManyVersionInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| amount | Int | No |
| donated_at | DateTime | No |
| referred_by | String | Null | Yes |
| test_done | NullableJsonNullValueInput | Json | No |
| bags | BloodDonationCreatebagsInput | String | No |
| media_done | String | Null | Yes |
| media_used | String | Null | Yes |
| incubation | String | Null | Yes |
| note | String | Null | Yes |
| created_at | DateTime | Null | Yes |
| updated_at | DateTime | Null | Yes |
| cabin_no | String | Null | Yes |
| reg_no | String | Null | Yes |
| BloodCenter | BloodCenterCreateNestedOneWithoutBloodDonationInput | No |
| Person | PersonCreateNestedOneWithoutBloodDonationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| donor_id | Int | No |
| organization_id | Int | No |
| amount | Int | No |
| donated_at | DateTime | No |
| referred_by | String | Null | Yes |
| test_done | NullableJsonNullValueInput | Json | No |
| bags | BloodDonationCreatebagsInput | String | No |
| media_done | String | Null | Yes |
| media_used | String | Null | Yes |
| incubation | String | Null | Yes |
| note | String | Null | Yes |
| created_at | DateTime | Null | Yes |
| updated_at | DateTime | Null | Yes |
| cabin_no | String | Null | Yes |
| reg_no | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | BloodDonationWhereUniqueInput | No |
| create | BloodDonationCreateWithoutVersionInput | BloodDonationUncheckedCreateWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | BloodDonationCreateManyVersionInput | BloodDonationCreateManyVersionInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | No |
| updated_at | DateTime | No |
| name | String | No |
| established_at | DateTime | No |
| Person_Club_chairmanToPerson | PersonCreateNestedOneWithoutClub_Club_chairmanToPersonInput | No |
| Contact_Club_contactToContact | ContactCreateNestedOneWithoutClub_Club_contactToContactInput | No |
| Person_Club_founderToPerson | PersonCreateNestedOneWithoutClub_Club_founderToPersonInput | No |
| Person_Club_vice_chairmanToPerson | PersonCreateNestedOneWithoutClub_Club_vice_chairmanToPersonInput | No |
| Contact_Contact_clubToClub | ContactCreateNestedManyWithoutClub_Contact_clubToClubInput | No |
| Member | MemberCreateNestedManyWithoutClubInput | No |
| Organization | OrganizationCreateNestedManyWithoutClubInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| name | String | No |
| established_at | DateTime | No |
| contact | Int | No |
| chairman | Int | No |
| founder | Int | No |
| vice_chairman | Int | No |
| Contact_Contact_clubToClub | ContactUncheckedCreateNestedManyWithoutClub_Contact_clubToClubInput | No |
| Member | MemberUncheckedCreateNestedManyWithoutClubInput | No |
| Organization | OrganizationUncheckedCreateNestedManyWithoutClubInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ClubWhereUniqueInput | No |
| create | ClubCreateWithoutVersionInput | ClubUncheckedCreateWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | ClubCreateManyVersionInput | ClubCreateManyVersionInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| address_line | String | No |
| address_line_1 | String | Null | Yes |
| state | String | No |
| city | String | No |
| zip | String | No |
| phone | String | No |
| phone_1 | String | Null | Yes |
| fax | String | Null | Yes |
| String | Null | Yes | |
| email_1 | String | Null | Yes |
| website | String | Null | Yes |
| social_media | NullableJsonNullValueInput | Json | No |
| country | String | Null | Yes |
| person | Int | Null | Yes |
| club | Int | Null | Yes |
| blood_center | Int | Null | Yes |
| donation | Int | Null | Yes |
| hospital | Int | Null | Yes |
| Ambulance | AmbulanceUncheckedCreateNestedManyWithoutContactInput | No |
| BloodCenter_BloodCenter_contactToContact | BloodCenterUncheckedCreateNestedManyWithoutContact_BloodCenter_contactToContactInput | No |
| Club_Club_contactToContact | ClubUncheckedCreateNestedManyWithoutContact_Club_contactToContactInput | No |
| Hospital_Hospital_contactToContact | HospitalUncheckedCreateNestedManyWithoutContact_Hospital_contactToContactInput | No |
| Person_Person_contact_idToContact | PersonUncheckedCreateNestedManyWithoutContact_Person_contact_idToContactInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ContactWhereUniqueInput | No |
| create | ContactCreateWithoutVersionInput | ContactUncheckedCreateWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | ContactCreateManyVersionInput | ContactCreateManyVersionInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| alpha_3 | String | No |
| alpha_2 | String | No |
| numeric | String | No |
| name | String | No |
| created_at | DateTime | Null | Yes |
| updated_at | DateTime | Null | Yes |
| Contact | ContactCreateNestedManyWithoutCountryInput | No |
| Name | Type | Nullable |
|---|---|---|
| alpha_3 | String | No |
| alpha_2 | String | No |
| numeric | String | No |
| name | String | No |
| created_at | DateTime | Null | Yes |
| updated_at | DateTime | Null | Yes |
| Contact | ContactUncheckedCreateNestedManyWithoutCountryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CountryWhereUniqueInput | No |
| create | CountryCreateWithoutVersionInput | CountryUncheckedCreateWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | CountryCreateManyVersionInput | CountryCreateManyVersionInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | Null | Yes |
| updated_at | DateTime | Null | Yes |
| name | String | Null | Yes |
| mac_address | String | Null | Yes |
| model | String | Null | Yes |
| os | String | Null | Yes |
| os_version | String | Null | Yes |
| device_id | String | Null | Yes |
| brand | String | Null | Yes |
| manufacturer | String | Null | Yes |
| LoginRecord | LoginRecordCreateNestedManyWithoutDeviceInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | Null | Yes |
| updated_at | DateTime | Null | Yes |
| name | String | Null | Yes |
| mac_address | String | Null | Yes |
| model | String | Null | Yes |
| os | String | Null | Yes |
| os_version | String | Null | Yes |
| device_id | String | Null | Yes |
| brand | String | Null | Yes |
| manufacturer | String | Null | Yes |
| LoginRecord | LoginRecordUncheckedCreateNestedManyWithoutDeviceInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | DeviceWhereUniqueInput | No |
| create | DeviceCreateWithoutVersionInput | DeviceUncheckedCreateWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | DeviceCreateManyVersionInput | DeviceCreateManyVersionInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | No |
| updated_at | DateTime | No |
| amount | Int | No |
| donated_at | DateTime | No |
| Contact | ContactCreateNestedManyWithoutDonationInput | No |
| Member | MemberCreateNestedOneWithoutDonationInput | No |
| Organization | OrganizationCreateNestedOneWithoutDonationInput | No |
| Person | PersonCreateNestedOneWithoutDonationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| amount | Int | No |
| donated_at | DateTime | No |
| person | Int | No |
| member | Int | No |
| organization | Int | No |
| Contact | ContactUncheckedCreateNestedManyWithoutDonationInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | DonationWhereUniqueInput | No |
| create | DonationCreateWithoutVersionInput | DonationUncheckedCreateWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | DonationCreateManyVersionInput | DonationCreateManyVersionInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | No |
| updated_at | DateTime | No |
| name | String | No |
| founded_at | DateTime | No |
| accreditation | String | Null | Yes |
| bed_count | Int | Null | Yes |
| emergency_room | Boolean | Null | Yes |
| services | HospitalCreateservicesInput | String | No |
| specialties | HospitalCreatespecialtiesInput | String | No |
| rating | Float | Null | Yes |
| facility_type | FacilityType | Null | Yes |
| ownership | String | Null | Yes |
| insurance_accepted | String | Null | Yes |
| operating_hours | String | Null | Yes |
| infrastructure | String | Null | Yes |
| security_controls | String | Null | Yes |
| founder | Int | Null | Yes |
| director | Int | Null | Yes |
| chairman | Int | Null | Yes |
| Contact_Contact_hospitalToHospital | ContactCreateNestedManyWithoutHospital_Contact_hospitalToHospitalInput | No |
| Contact_Hospital_contactToContact | ContactCreateNestedOneWithoutHospital_Hospital_contactToContactInput | No |
| Location | LocationCreateNestedOneWithoutHospitalInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| name | String | No |
| founded_at | DateTime | No |
| accreditation | String | Null | Yes |
| bed_count | Int | Null | Yes |
| emergency_room | Boolean | Null | Yes |
| services | HospitalCreateservicesInput | String | No |
| specialties | HospitalCreatespecialtiesInput | String | No |
| rating | Float | Null | Yes |
| facility_type | FacilityType | Null | Yes |
| ownership | String | Null | Yes |
| insurance_accepted | String | Null | Yes |
| operating_hours | String | Null | Yes |
| infrastructure | String | Null | Yes |
| security_controls | String | Null | Yes |
| location | Int | Null | Yes |
| contact | Int | Null | Yes |
| founder | Int | Null | Yes |
| director | Int | Null | Yes |
| chairman | Int | Null | Yes |
| Contact_Contact_hospitalToHospital | ContactUncheckedCreateNestedManyWithoutHospital_Contact_hospitalToHospitalInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | HospitalWhereUniqueInput | No |
| create | HospitalCreateWithoutVersionInput | HospitalUncheckedCreateWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | HospitalCreateManyVersionInput | HospitalCreateManyVersionInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| latitude | Float | No |
| longitude | Float | No |
| created_at | DateTime | Null | Yes |
| updated_at | DateTime | Null | Yes |
| Hospital | HospitalCreateNestedManyWithoutLocationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| latitude | Float | No |
| longitude | Float | No |
| created_at | DateTime | Null | Yes |
| updated_at | DateTime | Null | Yes |
| Hospital | HospitalUncheckedCreateNestedManyWithoutLocationInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | LocationWhereUniqueInput | No |
| create | LocationCreateWithoutVersionInput | LocationUncheckedCreateWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | LocationCreateManyVersionInput | LocationCreateManyVersionInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| user | Int | No |
| ip_address | String | No |
| user_agent | String | No |
| login_status | String | No |
| session_id | String | Null | Yes |
| location | String | Null | Yes |
| authentication | AuthenticationMethod | Null | Yes |
| security_tokens | String | Null | Yes |
| logout_timestamp | DateTime | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Device | DeviceCreateNestedOneWithoutLoginRecordInput | No |
| OrganizationSettings | OrganizationSettingsCreateNestedManyWithoutLoginRecordInput | No |
| User | UserCreateNestedManyWithoutLoginRecordInput | No |
| UserSettings | UserSettingsCreateNestedManyWithoutLoginRecordInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| user | Int | No |
| ip_address | String | No |
| user_agent | String | No |
| login_status | String | No |
| session_id | String | Null | Yes |
| location | String | Null | Yes |
| authentication | AuthenticationMethod | Null | Yes |
| security_tokens | String | Null | Yes |
| logout_timestamp | DateTime | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| devices | Int | Null | Yes |
| OrganizationSettings | OrganizationSettingsUncheckedCreateNestedManyWithoutLoginRecordInput | No |
| User | UserUncheckedCreateNestedManyWithoutLoginRecordInput | No |
| UserSettings | UserSettingsUncheckedCreateNestedManyWithoutLoginRecordInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | LoginRecordWhereUniqueInput | No |
| create | LoginRecordCreateWithoutVersionInput | LoginRecordUncheckedCreateWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | LoginRecordCreateManyVersionInput | LoginRecordCreateManyVersionInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | No |
| updated_at | DateTime | No |
| allergies | String | Null | Yes |
| complications | String | Null | Yes |
| medications | String | Null | Yes |
| blood_disorders | String | Null | Yes |
| infectious_diseases | String | Null | Yes |
| last_blood_donation | DateTime | Null | Yes |
| medical_conditions | String | Null | Yes |
| Donation | DonationCreateNestedManyWithoutMemberInput | No |
| Club | ClubCreateNestedOneWithoutMemberInput | No |
| Person | PersonCreateNestedOneWithoutMemberInput | No |
| Request | RequestCreateNestedManyWithoutMemberInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| allergies | String | Null | Yes |
| complications | String | Null | Yes |
| medications | String | Null | Yes |
| blood_disorders | String | Null | Yes |
| club_id | Int | Null | Yes |
| infectious_diseases | String | Null | Yes |
| last_blood_donation | DateTime | Null | Yes |
| medical_conditions | String | Null | Yes |
| person_id | Int | Null | Yes |
| Donation | DonationUncheckedCreateNestedManyWithoutMemberInput | No |
| Request | RequestUncheckedCreateNestedManyWithoutMemberInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | MemberWhereUniqueInput | No |
| create | MemberCreateWithoutVersionInput | MemberUncheckedCreateWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | MemberCreateManyVersionInput | MemberCreateManyVersionInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | No |
| updated_at | DateTime | No |
| org_type | OrgType | No |
| org_id | Int | No |
| Volunteer | JsonNullValueInput | Json | No |
| Ambulance | AmbulanceCreateNestedManyWithoutOrganizationInput | No |
| Donation | DonationCreateNestedManyWithoutOrganizationInput | No |
| Club | ClubCreateNestedOneWithoutOrganizationInput | No |
| OrganizationSettings | OrganizationSettingsCreateNestedOneWithoutOrganizationInput | No |
| Person | PersonCreateNestedOneWithoutOrganizationInput | No |
| Support | SupportCreateNestedManyWithoutOrganizationInput | No |
| SupportMessage | SupportMessageCreateNestedManyWithoutOrganizationInput | No |
| Team | TeamCreateNestedManyWithoutOrganizationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| org_type | OrgType | No |
| org_id | Int | No |
| Volunteer | JsonNullValueInput | Json | No |
| personId | Int | No |
| organizationSettingsId | Int | No |
| clubId | Int | Null | Yes |
| Ambulance | AmbulanceUncheckedCreateNestedManyWithoutOrganizationInput | No |
| Donation | DonationUncheckedCreateNestedManyWithoutOrganizationInput | No |
| Support | SupportUncheckedCreateNestedManyWithoutOrganizationInput | No |
| SupportMessage | SupportMessageUncheckedCreateNestedManyWithoutOrganizationInput | No |
| Team | TeamUncheckedCreateNestedManyWithoutOrganizationInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrganizationWhereUniqueInput | No |
| create | OrganizationCreateWithoutVersionInput | OrganizationUncheckedCreateWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | OrganizationCreateManyVersionInput | OrganizationCreateManyVersionInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | No |
| updated_at | DateTime | No |
| language | Language | No |
| time_format | TimeFormat | No |
| date_format | DateFormat | No |
| timezone | Timezone | No |
| theme | Theme | Null | Yes |
| email_notifications | Boolean | No |
| phone_notification | Boolean | No |
| push_notifications | Boolean | No |
| two_factor_auth | Boolean | Null | Yes |
| accountDeactivation | Boolean | Null | Yes |
| avatar | String | Null | Yes |
| clearBrowsingData | Boolean | Null | Yes |
| contactSupportLink | String | Null | Yes |
| dataRetentionDays | Int | Null | Yes |
| dataSharing | Boolean | Null | Yes |
| helpCenterLink | String | Null | Yes |
| high_contrast_mode | Boolean | Null | Yes |
| in_app_notifications | Boolean | Null | Yes |
| key_board_shortcut | Boolean | Null | Yes |
| notification_frequency | String | Null | Yes |
| notification_sound | String | Null | Yes |
| notification_vibrate | Boolean | Null | Yes |
| password_reset | Boolean | Null | Yes |
| security_answer | String | Null | Yes |
| security_question | String | Null | Yes |
| username | String | Null | Yes |
| Organization | OrganizationCreateNestedManyWithoutOrganizationSettingsInput | No |
| LoginRecord | LoginRecordCreateNestedOneWithoutOrganizationSettingsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| language | Language | No |
| time_format | TimeFormat | No |
| date_format | DateFormat | No |
| timezone | Timezone | No |
| theme | Theme | Null | Yes |
| email_notifications | Boolean | No |
| phone_notification | Boolean | No |
| push_notifications | Boolean | No |
| two_factor_auth | Boolean | Null | Yes |
| loginRecordId | Int | Null | Yes |
| accountDeactivation | Boolean | Null | Yes |
| avatar | String | Null | Yes |
| clearBrowsingData | Boolean | Null | Yes |
| contactSupportLink | String | Null | Yes |
| dataRetentionDays | Int | Null | Yes |
| dataSharing | Boolean | Null | Yes |
| helpCenterLink | String | Null | Yes |
| high_contrast_mode | Boolean | Null | Yes |
| in_app_notifications | Boolean | Null | Yes |
| key_board_shortcut | Boolean | Null | Yes |
| notification_frequency | String | Null | Yes |
| notification_sound | String | Null | Yes |
| notification_vibrate | Boolean | Null | Yes |
| password_reset | Boolean | Null | Yes |
| security_answer | String | Null | Yes |
| security_question | String | Null | Yes |
| username | String | Null | Yes |
| Organization | OrganizationUncheckedCreateNestedManyWithoutOrganizationSettingsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrganizationSettingsWhereUniqueInput | No |
| create | OrganizationSettingsCreateWithoutVersionInput | OrganizationSettingsUncheckedCreateWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | OrganizationSettingsCreateManyVersionInput | OrganizationSettingsCreateManyVersionInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | PersonWhereUniqueInput | No |
| create | PersonCreateWithoutVersionInput | PersonUncheckedCreateWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | PersonCreateManyVersionInput | PersonCreateManyVersionInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | No |
| updated_at | DateTime | No |
| health_issue | String | No |
| blood_group | BloodGroup | No |
| quantity | Int | No |
| donation_type | String | No |
| datetime | DateTime | No |
| hospital_name | String | No |
| hospital_address | String | No |
| hospital_phone | String | No |
| hospital_email | String | No |
| Member | MemberCreateNestedOneWithoutRequestInput | No |
| Person | PersonCreateNestedOneWithoutRequestInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| health_issue | String | No |
| blood_group | BloodGroup | No |
| quantity | Int | No |
| donation_type | String | No |
| datetime | DateTime | No |
| hospital_name | String | No |
| hospital_address | String | No |
| hospital_phone | String | No |
| hospital_email | String | No |
| memberId | Int | Null | Yes |
| personId | Int | No |
| Name | Type | Nullable |
|---|---|---|
| where | RequestWhereUniqueInput | No |
| create | RequestCreateWithoutVersionInput | RequestUncheckedCreateWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | RequestCreateManyVersionInput | RequestCreateManyVersionInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| question | String | No |
| answer | String | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| User | UserCreateNestedOneWithoutSecurityQuestionInput | No |
| UserSettings | UserSettingsCreateNestedManyWithoutSecurityQuestionInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| question | String | No |
| answer | String | No |
| userId | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| UserSettings | UserSettingsUncheckedCreateNestedManyWithoutSecurityQuestionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | SecurityQuestionWhereUniqueInput | No |
| create | SecurityQuestionCreateWithoutVersionInput | SecurityQuestionUncheckedCreateWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | SecurityQuestionCreateManyVersionInput | SecurityQuestionCreateManyVersionInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| String | Null | Yes | |
| String | Null | Yes | |
| String | Null | Yes | |
| userId | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| User | UserCreateNestedManyWithoutSocialMediaLinksInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| String | Null | Yes | |
| String | Null | Yes | |
| String | Null | Yes | |
| userId | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| User | UserUncheckedCreateNestedManyWithoutSocialMediaLinksInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | SocialMediaLinksWhereUniqueInput | No |
| create | SocialMediaLinksCreateWithoutVersionInput | SocialMediaLinksUncheckedCreateWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | SocialMediaLinksCreateManyVersionInput | SocialMediaLinksCreateManyVersionInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | No |
| updated_at | DateTime | No |
| messages | String | Null | Yes |
| status | String | Null | Yes |
| priority | Int | No |
| subject | String | Null | Yes |
| Organization | OrganizationCreateNestedOneWithoutSupportInput | No |
| SupportMessage | SupportMessageCreateNestedManyWithoutSupportInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| organization | Int | No |
| messages | String | Null | Yes |
| status | String | Null | Yes |
| priority | Int | No |
| subject | String | Null | Yes |
| SupportMessage | SupportMessageUncheckedCreateNestedManyWithoutSupportInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | SupportWhereUniqueInput | No |
| create | SupportCreateWithoutVersionInput | SupportUncheckedCreateWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | SupportCreateManyVersionInput | SupportCreateManyVersionInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| message | String | No |
| Person | PersonCreateNestedOneWithoutSupportMessageInput | No |
| Organization | OrganizationCreateNestedOneWithoutSupportMessageInput | No |
| Support | SupportCreateNestedOneWithoutSupportMessageInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| organization | Int | No |
| support | Int | No |
| message | String | No |
| author | Int | No |
| Name | Type | Nullable |
|---|---|---|
| where | SupportMessageWhereUniqueInput | No |
| create | SupportMessageCreateWithoutVersionInput | SupportMessageUncheckedCreateWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | SupportMessageCreateManyVersionInput | SupportMessageCreateManyVersionInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | No |
| updated_at | DateTime | No |
| started_at | DateTime | No |
| ended_at | DateTime | No |
| status | String | No |
| Person_Person_teamIdToTeam | PersonCreateNestedManyWithoutTeam_Person_teamIdToTeamInput | No |
| Person_Team_membersToPerson | PersonCreateNestedOneWithoutTeam_Team_membersToPersonInput | No |
| Organization | OrganizationCreateNestedOneWithoutTeamInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| started_at | DateTime | No |
| ended_at | DateTime | No |
| organization | Int | No |
| members | Int | No |
| status | String | No |
| Person_Person_teamIdToTeam | PersonUncheckedCreateNestedManyWithoutTeam_Person_teamIdToTeamInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TeamWhereUniqueInput | No |
| create | TeamCreateWithoutVersionInput | TeamUncheckedCreateWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | TeamCreateManyVersionInput | TeamCreateManyVersionInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| is_enabled | Boolean | No |
| secret_key | String | Null | Yes |
| user_id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| User | UserCreateNestedManyWithoutTwoFactorAuthInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| is_enabled | Boolean | No |
| secret_key | String | Null | Yes |
| user_id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| User | UserUncheckedCreateNestedManyWithoutTwoFactorAuthInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TwoFactorAuthWhereUniqueInput | No |
| create | TwoFactorAuthCreateWithoutVersionInput | TwoFactorAuthUncheckedCreateWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | TwoFactorAuthCreateManyVersionInput | TwoFactorAuthCreateManyVersionInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| username | String | Null | Yes |
| String | No | |
| password | String | No |
| status | AccountStatus | No |
| ip | String | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| SecurityQuestion | SecurityQuestionCreateNestedManyWithoutUserInput | No |
| LoginRecord | LoginRecordCreateNestedOneWithoutUserInput | No |
| Person | PersonCreateNestedOneWithoutUserInput | No |
| SocialMediaLinks | SocialMediaLinksCreateNestedOneWithoutUserInput | No |
| TwoFactorAuth | TwoFactorAuthCreateNestedOneWithoutUserInput | No |
| UserSettings | UserSettingsCreateNestedOneWithoutUserInput | No |
| UserRole | UserRoleCreateNestedManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| username | String | Null | Yes |
| String | No | |
| password | String | No |
| status | AccountStatus | No |
| ip | String | No |
| two_factor_auth | Int | No |
| social_login | Int | No |
| logins | Int | No |
| person | Int | No |
| settings | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| SecurityQuestion | SecurityQuestionUncheckedCreateNestedManyWithoutUserInput | No |
| UserRole | UserRoleUncheckedCreateNestedManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutVersionInput | UserUncheckedCreateWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | UserCreateManyVersionInput | UserCreateManyVersionInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| name | String | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| User | UserCreateNestedOneWithoutUserRoleInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| user_id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserRoleWhereUniqueInput | No |
| create | UserRoleCreateWithoutVersionInput | UserRoleUncheckedCreateWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | UserRoleCreateManyVersionInput | UserRoleCreateManyVersionInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | No |
| updated_at | DateTime | No |
| language | Language | No |
| time_format | TimeFormat | No |
| date_format | DateFormat | No |
| timezone | Timezone | No |
| theme | Theme | Null | Yes |
| email_notifications | Boolean | No |
| phone_notification | Boolean | No |
| push_notifications | Boolean | No |
| two_factor_auth | Boolean | Null | Yes |
| high_contrast_mode | Boolean | Null | Yes |
| in_app_notifications | Boolean | Null | Yes |
| key_board_shortcut | Boolean | Null | Yes |
| notification_frequency | String | Null | Yes |
| notification_sound | String | Null | Yes |
| notification_vibrate | Boolean | Null | Yes |
| password_reset | Boolean | Null | Yes |
| User | UserCreateNestedManyWithoutUserSettingsInput | No |
| LoginRecord | LoginRecordCreateNestedOneWithoutUserSettingsInput | No |
| SecurityQuestion | SecurityQuestionCreateNestedOneWithoutUserSettingsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| language | Language | No |
| time_format | TimeFormat | No |
| date_format | DateFormat | No |
| timezone | Timezone | No |
| theme | Theme | Null | Yes |
| email_notifications | Boolean | No |
| phone_notification | Boolean | No |
| push_notifications | Boolean | No |
| two_factor_auth | Boolean | Null | Yes |
| login_record_id | Int | No |
| high_contrast_mode | Boolean | Null | Yes |
| in_app_notifications | Boolean | Null | Yes |
| key_board_shortcut | Boolean | Null | Yes |
| notification_frequency | String | Null | Yes |
| notification_sound | String | Null | Yes |
| notification_vibrate | Boolean | Null | Yes |
| password_reset | Boolean | Null | Yes |
| security_question | Int | Null | Yes |
| User | UserUncheckedCreateNestedManyWithoutUserSettingsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserSettingsWhereUniqueInput | No |
| create | UserSettingsCreateWithoutVersionInput | UserSettingsUncheckedCreateWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | UserSettingsCreateManyVersionInput | UserSettingsCreateManyVersionInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | AmbulanceWhereUniqueInput | No |
| update | AmbulanceUpdateWithoutVersionInput | AmbulanceUncheckedUpdateWithoutVersionInput | No |
| create | AmbulanceCreateWithoutVersionInput | AmbulanceUncheckedCreateWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | AmbulanceWhereUniqueInput | No |
| data | AmbulanceUpdateWithoutVersionInput | AmbulanceUncheckedUpdateWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | AmbulanceScalarWhereInput | No |
| data | AmbulanceUpdateManyMutationInput | AmbulanceUncheckedUpdateManyWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BloodCenterWhereUniqueInput | No |
| update | BloodCenterUpdateWithoutVersionInput | BloodCenterUncheckedUpdateWithoutVersionInput | No |
| create | BloodCenterCreateWithoutVersionInput | BloodCenterUncheckedCreateWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BloodCenterWhereUniqueInput | No |
| data | BloodCenterUpdateWithoutVersionInput | BloodCenterUncheckedUpdateWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BloodCenterScalarWhereInput | No |
| data | BloodCenterUpdateManyMutationInput | BloodCenterUncheckedUpdateManyWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BloodDonationWhereUniqueInput | No |
| update | BloodDonationUpdateWithoutVersionInput | BloodDonationUncheckedUpdateWithoutVersionInput | No |
| create | BloodDonationCreateWithoutVersionInput | BloodDonationUncheckedCreateWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BloodDonationWhereUniqueInput | No |
| data | BloodDonationUpdateWithoutVersionInput | BloodDonationUncheckedUpdateWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BloodDonationScalarWhereInput | No |
| data | BloodDonationUpdateManyMutationInput | BloodDonationUncheckedUpdateManyWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ClubWhereUniqueInput | No |
| update | ClubUpdateWithoutVersionInput | ClubUncheckedUpdateWithoutVersionInput | No |
| create | ClubCreateWithoutVersionInput | ClubUncheckedCreateWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ClubWhereUniqueInput | No |
| data | ClubUpdateWithoutVersionInput | ClubUncheckedUpdateWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ClubScalarWhereInput | No |
| data | ClubUpdateManyMutationInput | ClubUncheckedUpdateManyWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ContactWhereUniqueInput | No |
| update | ContactUpdateWithoutVersionInput | ContactUncheckedUpdateWithoutVersionInput | No |
| create | ContactCreateWithoutVersionInput | ContactUncheckedCreateWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ContactWhereUniqueInput | No |
| data | ContactUpdateWithoutVersionInput | ContactUncheckedUpdateWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ContactScalarWhereInput | No |
| data | ContactUpdateManyMutationInput | ContactUncheckedUpdateManyWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CountryWhereUniqueInput | No |
| update | CountryUpdateWithoutVersionInput | CountryUncheckedUpdateWithoutVersionInput | No |
| create | CountryCreateWithoutVersionInput | CountryUncheckedCreateWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CountryWhereUniqueInput | No |
| data | CountryUpdateWithoutVersionInput | CountryUncheckedUpdateWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CountryScalarWhereInput | No |
| data | CountryUpdateManyMutationInput | CountryUncheckedUpdateManyWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | CountryScalarWhereInput | CountryScalarWhereInput[] | No |
| OR | CountryScalarWhereInput[] | No |
| NOT | CountryScalarWhereInput | CountryScalarWhereInput[] | No |
| alpha_3 | StringFilter | String | No |
| alpha_2 | StringFilter | String | No |
| numeric | StringFilter | String | No |
| name | StringFilter | String | No |
| version | StringFilter | String | No |
| created_at | DateTimeNullableFilter | DateTime | Null | Yes |
| updated_at | DateTimeNullableFilter | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | DeviceWhereUniqueInput | No |
| update | DeviceUpdateWithoutVersionInput | DeviceUncheckedUpdateWithoutVersionInput | No |
| create | DeviceCreateWithoutVersionInput | DeviceUncheckedCreateWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | DeviceWhereUniqueInput | No |
| data | DeviceUpdateWithoutVersionInput | DeviceUncheckedUpdateWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | DeviceScalarWhereInput | No |
| data | DeviceUpdateManyMutationInput | DeviceUncheckedUpdateManyWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | DeviceScalarWhereInput | DeviceScalarWhereInput[] | No |
| OR | DeviceScalarWhereInput[] | No |
| NOT | DeviceScalarWhereInput | DeviceScalarWhereInput[] | No |
| id | IntFilter | Int | No |
| created_at | DateTimeNullableFilter | DateTime | Null | Yes |
| updated_at | DateTimeNullableFilter | DateTime | Null | Yes |
| name | StringNullableFilter | String | Null | Yes |
| mac_address | StringNullableFilter | String | Null | Yes |
| model | StringNullableFilter | String | Null | Yes |
| os | StringNullableFilter | String | Null | Yes |
| os_version | StringNullableFilter | String | Null | Yes |
| device_id | StringNullableFilter | String | Null | Yes |
| brand | StringNullableFilter | String | Null | Yes |
| manufacturer | StringNullableFilter | String | Null | Yes |
| version | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | DonationWhereUniqueInput | No |
| update | DonationUpdateWithoutVersionInput | DonationUncheckedUpdateWithoutVersionInput | No |
| create | DonationCreateWithoutVersionInput | DonationUncheckedCreateWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | DonationWhereUniqueInput | No |
| data | DonationUpdateWithoutVersionInput | DonationUncheckedUpdateWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | DonationScalarWhereInput | No |
| data | DonationUpdateManyMutationInput | DonationUncheckedUpdateManyWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | HospitalWhereUniqueInput | No |
| update | HospitalUpdateWithoutVersionInput | HospitalUncheckedUpdateWithoutVersionInput | No |
| create | HospitalCreateWithoutVersionInput | HospitalUncheckedCreateWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | HospitalWhereUniqueInput | No |
| data | HospitalUpdateWithoutVersionInput | HospitalUncheckedUpdateWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | HospitalScalarWhereInput | No |
| data | HospitalUpdateManyMutationInput | HospitalUncheckedUpdateManyWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | LocationWhereUniqueInput | No |
| update | LocationUpdateWithoutVersionInput | LocationUncheckedUpdateWithoutVersionInput | No |
| create | LocationCreateWithoutVersionInput | LocationUncheckedCreateWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | LocationWhereUniqueInput | No |
| data | LocationUpdateWithoutVersionInput | LocationUncheckedUpdateWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | LocationScalarWhereInput | No |
| data | LocationUpdateManyMutationInput | LocationUncheckedUpdateManyWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | LocationScalarWhereInput | LocationScalarWhereInput[] | No |
| OR | LocationScalarWhereInput[] | No |
| NOT | LocationScalarWhereInput | LocationScalarWhereInput[] | No |
| id | IntFilter | Int | No |
| latitude | FloatFilter | Float | No |
| longitude | FloatFilter | Float | No |
| version | StringFilter | String | No |
| created_at | DateTimeNullableFilter | DateTime | Null | Yes |
| updated_at | DateTimeNullableFilter | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | LoginRecordWhereUniqueInput | No |
| update | LoginRecordUpdateWithoutVersionInput | LoginRecordUncheckedUpdateWithoutVersionInput | No |
| create | LoginRecordCreateWithoutVersionInput | LoginRecordUncheckedCreateWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | LoginRecordWhereUniqueInput | No |
| data | LoginRecordUpdateWithoutVersionInput | LoginRecordUncheckedUpdateWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | LoginRecordScalarWhereInput | No |
| data | LoginRecordUpdateManyMutationInput | LoginRecordUncheckedUpdateManyWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | MemberWhereUniqueInput | No |
| update | MemberUpdateWithoutVersionInput | MemberUncheckedUpdateWithoutVersionInput | No |
| create | MemberCreateWithoutVersionInput | MemberUncheckedCreateWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | MemberWhereUniqueInput | No |
| data | MemberUpdateWithoutVersionInput | MemberUncheckedUpdateWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | MemberScalarWhereInput | No |
| data | MemberUpdateManyMutationInput | MemberUncheckedUpdateManyWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrganizationWhereUniqueInput | No |
| update | OrganizationUpdateWithoutVersionInput | OrganizationUncheckedUpdateWithoutVersionInput | No |
| create | OrganizationCreateWithoutVersionInput | OrganizationUncheckedCreateWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrganizationWhereUniqueInput | No |
| data | OrganizationUpdateWithoutVersionInput | OrganizationUncheckedUpdateWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrganizationScalarWhereInput | No |
| data | OrganizationUpdateManyMutationInput | OrganizationUncheckedUpdateManyWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrganizationSettingsWhereUniqueInput | No |
| data | OrganizationSettingsUpdateWithoutVersionInput | OrganizationSettingsUncheckedUpdateWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrganizationSettingsScalarWhereInput | No |
| data | OrganizationSettingsUpdateManyMutationInput | OrganizationSettingsUncheckedUpdateManyWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PersonWhereUniqueInput | No |
| update | PersonUpdateWithoutVersionInput | PersonUncheckedUpdateWithoutVersionInput | No |
| create | PersonCreateWithoutVersionInput | PersonUncheckedCreateWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PersonWhereUniqueInput | No |
| data | PersonUpdateWithoutVersionInput | PersonUncheckedUpdateWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PersonScalarWhereInput | No |
| data | PersonUpdateManyMutationInput | PersonUncheckedUpdateManyWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RequestWhereUniqueInput | No |
| update | RequestUpdateWithoutVersionInput | RequestUncheckedUpdateWithoutVersionInput | No |
| create | RequestCreateWithoutVersionInput | RequestUncheckedCreateWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RequestWhereUniqueInput | No |
| data | RequestUpdateWithoutVersionInput | RequestUncheckedUpdateWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RequestScalarWhereInput | No |
| data | RequestUpdateManyMutationInput | RequestUncheckedUpdateManyWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | SecurityQuestionWhereUniqueInput | No |
| update | SecurityQuestionUpdateWithoutVersionInput | SecurityQuestionUncheckedUpdateWithoutVersionInput | No |
| create | SecurityQuestionCreateWithoutVersionInput | SecurityQuestionUncheckedCreateWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | SecurityQuestionWhereUniqueInput | No |
| data | SecurityQuestionUpdateWithoutVersionInput | SecurityQuestionUncheckedUpdateWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | SecurityQuestionScalarWhereInput | No |
| data | SecurityQuestionUpdateManyMutationInput | SecurityQuestionUncheckedUpdateManyWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | SocialMediaLinksWhereUniqueInput | No |
| update | SocialMediaLinksUpdateWithoutVersionInput | SocialMediaLinksUncheckedUpdateWithoutVersionInput | No |
| create | SocialMediaLinksCreateWithoutVersionInput | SocialMediaLinksUncheckedCreateWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | SocialMediaLinksWhereUniqueInput | No |
| data | SocialMediaLinksUpdateWithoutVersionInput | SocialMediaLinksUncheckedUpdateWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | SocialMediaLinksScalarWhereInput | No |
| data | SocialMediaLinksUpdateManyMutationInput | SocialMediaLinksUncheckedUpdateManyWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | SocialMediaLinksScalarWhereInput | SocialMediaLinksScalarWhereInput[] | No |
| OR | SocialMediaLinksScalarWhereInput[] | No |
| NOT | SocialMediaLinksScalarWhereInput | SocialMediaLinksScalarWhereInput[] | No |
| id | IntFilter | Int | No |
| StringNullableFilter | String | Null | Yes | |
| StringNullableFilter | String | Null | Yes | |
| StringNullableFilter | String | Null | Yes | |
| userId | IntFilter | Int | No |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| version | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | SupportWhereUniqueInput | No |
| update | SupportUpdateWithoutVersionInput | SupportUncheckedUpdateWithoutVersionInput | No |
| create | SupportCreateWithoutVersionInput | SupportUncheckedCreateWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | SupportWhereUniqueInput | No |
| data | SupportUpdateWithoutVersionInput | SupportUncheckedUpdateWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | SupportScalarWhereInput | No |
| data | SupportUpdateManyMutationInput | SupportUncheckedUpdateManyWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | SupportMessageWhereUniqueInput | No |
| update | SupportMessageUpdateWithoutVersionInput | SupportMessageUncheckedUpdateWithoutVersionInput | No |
| create | SupportMessageCreateWithoutVersionInput | SupportMessageUncheckedCreateWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | SupportMessageWhereUniqueInput | No |
| data | SupportMessageUpdateWithoutVersionInput | SupportMessageUncheckedUpdateWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | SupportMessageScalarWhereInput | No |
| data | SupportMessageUpdateManyMutationInput | SupportMessageUncheckedUpdateManyWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TeamWhereUniqueInput | No |
| update | TeamUpdateWithoutVersionInput | TeamUncheckedUpdateWithoutVersionInput | No |
| create | TeamCreateWithoutVersionInput | TeamUncheckedCreateWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TeamWhereUniqueInput | No |
| data | TeamUpdateWithoutVersionInput | TeamUncheckedUpdateWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TeamScalarWhereInput | No |
| data | TeamUpdateManyMutationInput | TeamUncheckedUpdateManyWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TwoFactorAuthWhereUniqueInput | No |
| update | TwoFactorAuthUpdateWithoutVersionInput | TwoFactorAuthUncheckedUpdateWithoutVersionInput | No |
| create | TwoFactorAuthCreateWithoutVersionInput | TwoFactorAuthUncheckedCreateWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TwoFactorAuthWhereUniqueInput | No |
| data | TwoFactorAuthUpdateWithoutVersionInput | TwoFactorAuthUncheckedUpdateWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TwoFactorAuthScalarWhereInput | No |
| data | TwoFactorAuthUpdateManyMutationInput | TwoFactorAuthUncheckedUpdateManyWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | TwoFactorAuthScalarWhereInput | TwoFactorAuthScalarWhereInput[] | No |
| OR | TwoFactorAuthScalarWhereInput[] | No |
| NOT | TwoFactorAuthScalarWhereInput | TwoFactorAuthScalarWhereInput[] | No |
| id | IntFilter | Int | No |
| is_enabled | BoolFilter | Boolean | No |
| secret_key | StringNullableFilter | String | Null | Yes |
| user_id | IntFilter | Int | No |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| version | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| update | UserUpdateWithoutVersionInput | UserUncheckedUpdateWithoutVersionInput | No |
| create | UserCreateWithoutVersionInput | UserUncheckedCreateWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| data | UserUpdateWithoutVersionInput | UserUncheckedUpdateWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserScalarWhereInput | No |
| data | UserUpdateManyMutationInput | UserUncheckedUpdateManyWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserRoleWhereUniqueInput | No |
| update | UserRoleUpdateWithoutVersionInput | UserRoleUncheckedUpdateWithoutVersionInput | No |
| create | UserRoleCreateWithoutVersionInput | UserRoleUncheckedCreateWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserRoleWhereUniqueInput | No |
| data | UserRoleUpdateWithoutVersionInput | UserRoleUncheckedUpdateWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserRoleScalarWhereInput | No |
| data | UserRoleUpdateManyMutationInput | UserRoleUncheckedUpdateManyWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserSettingsWhereUniqueInput | No |
| update | UserSettingsUpdateWithoutVersionInput | UserSettingsUncheckedUpdateWithoutVersionInput | No |
| create | UserSettingsCreateWithoutVersionInput | UserSettingsUncheckedCreateWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserSettingsWhereUniqueInput | No |
| data | UserSettingsUpdateWithoutVersionInput | UserSettingsUncheckedUpdateWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserSettingsScalarWhereInput | No |
| data | UserSettingsUpdateManyMutationInput | UserSettingsUncheckedUpdateManyWithoutVersionInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| donor_id | Int | No |
| amount | Int | No |
| version | String | No |
| donated_at | DateTime | No |
| referred_by | String | Null | Yes |
| test_done | NullableJsonNullValueInput | Json | No |
| bags | BloodDonationCreatebagsInput | String | No |
| media_done | String | Null | Yes |
| media_used | String | Null | Yes |
| incubation | String | Null | Yes |
| note | String | Null | Yes |
| created_at | DateTime | Null | Yes |
| updated_at | DateTime | Null | Yes |
| cabin_no | String | Null | Yes |
| reg_no | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| address_line | String | No |
| address_line_1 | String | Null | Yes |
| state | String | No |
| city | String | No |
| zip | String | No |
| phone | String | No |
| phone_1 | String | Null | Yes |
| fax | String | Null | Yes |
| String | Null | Yes | |
| email_1 | String | Null | Yes |
| website | String | Null | Yes |
| social_media | NullableJsonNullValueInput | Json | No |
| version | String | No |
| country | String | Null | Yes |
| person | Int | Null | Yes |
| club | Int | Null | Yes |
| donation | Int | Null | Yes |
| hospital | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| amount | Int | IntFieldUpdateOperationsInput | No |
| donated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| referred_by | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| test_done | NullableJsonNullValueInput | Json | No |
| bags | BloodDonationUpdatebagsInput | String | No |
| media_done | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| media_used | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| incubation | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| note | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| updated_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| cabin_no | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| reg_no | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Person | PersonUpdateOneRequiredWithoutBloodDonationNestedInput | No |
| Version | VersionUpdateOneRequiredWithoutBloodDonationNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| address_line | String | No |
| address_line_1 | String | Null | Yes |
| state | String | No |
| city | String | No |
| zip | String | No |
| phone | String | No |
| phone_1 | String | Null | Yes |
| fax | String | Null | Yes |
| String | Null | Yes | |
| email_1 | String | Null | Yes |
| website | String | Null | Yes |
| social_media | NullableJsonNullValueInput | Json | No |
| version | String | No |
| country | String | Null | Yes |
| person | Int | Null | Yes |
| blood_center | Int | Null | Yes |
| donation | Int | Null | Yes |
| hospital | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| version | String | No |
| allergies | String | Null | Yes |
| complications | String | Null | Yes |
| medications | String | Null | Yes |
| blood_disorders | String | Null | Yes |
| infectious_diseases | String | Null | Yes |
| last_blood_donation | DateTime | Null | Yes |
| medical_conditions | String | Null | Yes |
| person_id | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| org_type | OrgType | No |
| org_id | Int | No |
| Volunteer | JsonNullValueInput | Json | No |
| personId | Int | No |
| organizationSettingsId | Int | No |
| version | String | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| allergies | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| complications | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| medications | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| blood_disorders | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| infectious_diseases | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| last_blood_donation | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| medical_conditions | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Donation | DonationUpdateManyWithoutMemberNestedInput | No |
| Person | PersonUpdateOneWithoutMemberNestedInput | No |
| Version | VersionUpdateOneRequiredWithoutMemberNestedInput | No |
| Request | RequestUpdateManyWithoutMemberNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| allergies | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| complications | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| medications | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| blood_disorders | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| infectious_diseases | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| last_blood_donation | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| medical_conditions | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| person_id | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Donation | DonationUncheckedUpdateManyWithoutMemberNestedInput | No |
| Request | RequestUncheckedUpdateManyWithoutMemberNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| allergies | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| complications | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| medications | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| blood_disorders | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| infectious_diseases | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| last_blood_donation | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| medical_conditions | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| person_id | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| org_type | OrgType | EnumOrgTypeFieldUpdateOperationsInput | No |
| org_id | Int | IntFieldUpdateOperationsInput | No |
| Volunteer | JsonNullValueInput | Json | No |
| Ambulance | AmbulanceUpdateManyWithoutOrganizationNestedInput | No |
| Donation | DonationUpdateManyWithoutOrganizationNestedInput | No |
| OrganizationSettings | OrganizationSettingsUpdateOneRequiredWithoutOrganizationNestedInput | No |
| Person | PersonUpdateOneRequiredWithoutOrganizationNestedInput | No |
| Version | VersionUpdateOneRequiredWithoutOrganizationNestedInput | No |
| Support | SupportUpdateManyWithoutOrganizationNestedInput | No |
| SupportMessage | SupportMessageUpdateManyWithoutOrganizationNestedInput | No |
| Team | TeamUpdateManyWithoutOrganizationNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| org_type | OrgType | EnumOrgTypeFieldUpdateOperationsInput | No |
| org_id | Int | IntFieldUpdateOperationsInput | No |
| Volunteer | JsonNullValueInput | Json | No |
| personId | Int | IntFieldUpdateOperationsInput | No |
| organizationSettingsId | Int | IntFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| Ambulance | AmbulanceUncheckedUpdateManyWithoutOrganizationNestedInput | No |
| Donation | DonationUncheckedUpdateManyWithoutOrganizationNestedInput | No |
| Support | SupportUncheckedUpdateManyWithoutOrganizationNestedInput | No |
| SupportMessage | SupportMessageUncheckedUpdateManyWithoutOrganizationNestedInput | No |
| Team | TeamUncheckedUpdateManyWithoutOrganizationNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| org_type | OrgType | EnumOrgTypeFieldUpdateOperationsInput | No |
| org_id | Int | IntFieldUpdateOperationsInput | No |
| Volunteer | JsonNullValueInput | Json | No |
| personId | Int | IntFieldUpdateOperationsInput | No |
| organizationSettingsId | Int | IntFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| vehicle_number | String | No |
| ambulance_type | String | Null | Yes |
| person | Int | No |
| version | String | No |
| organization | Int | Null | Yes |
| equipment | AmbulanceCreateequipmentInput | String | No |
| color | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| established_at | DateTime | No |
| version | String | No |
| founder | Int | No |
| title | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| name | String | No |
| established_at | DateTime | No |
| version | String | No |
| chairman | Int | No |
| founder | Int | No |
| vice_chairman | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| name | String | No |
| founded_at | DateTime | No |
| accreditation | String | Null | Yes |
| bed_count | Int | Null | Yes |
| emergency_room | Boolean | Null | Yes |
| services | HospitalCreateservicesInput | String | No |
| specialties | HospitalCreatespecialtiesInput | String | No |
| rating | Float | Null | Yes |
| facility_type | FacilityType | Null | Yes |
| ownership | String | Null | Yes |
| insurance_accepted | String | Null | Yes |
| operating_hours | String | Null | Yes |
| infrastructure | String | Null | Yes |
| security_controls | String | Null | Yes |
| version | String | No |
| location | Int | Null | Yes |
| founder | Int | Null | Yes |
| director | Int | Null | Yes |
| chairman | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| first_name | String | No |
| last_name | String | Null | Yes |
| father_name | String | Null | Yes |
| mother_name | String | Null | Yes |
| profession | String | Null | Yes |
| dob | DateTime | Null | Yes |
| gender | Gender | Null | Yes |
| version | String | No |
| avatar | String | Null | Yes |
| teamId | Int | Null | Yes |
| bid | String | Null | Yes |
| driving | String | Null | Yes |
| nid | String | Null | Yes |
| passport | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| vehicle_number | String | StringFieldUpdateOperationsInput | No |
| ambulance_type | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| equipment | AmbulanceUpdateequipmentInput | String | No |
| color | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Organization | OrganizationUpdateOneWithoutAmbulanceNestedInput | No |
| Person | PersonUpdateOneRequiredWithoutAmbulanceNestedInput | No |
| Version | VersionUpdateOneRequiredWithoutAmbulanceNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| vehicle_number | String | StringFieldUpdateOperationsInput | No |
| ambulance_type | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| person | Int | IntFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| organization | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| equipment | AmbulanceUpdateequipmentInput | String | No |
| color | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| vehicle_number | String | StringFieldUpdateOperationsInput | No |
| ambulance_type | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| person | Int | IntFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| organization | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| equipment | AmbulanceUpdateequipmentInput | String | No |
| color | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| established_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| Person | PersonUpdateOneRequiredWithoutBloodCenterNestedInput | No |
| Version | VersionUpdateOneRequiredWithoutBloodCenterNestedInput | No |
| BloodDonation | BloodDonationUpdateManyWithoutBloodCenterNestedInput | No |
| Contact_Contact_blood_centerToBloodCenter | ContactUpdateManyWithoutBloodCenter_Contact_blood_centerToBloodCenterNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| established_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| founder | Int | IntFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| BloodDonation | BloodDonationUncheckedUpdateManyWithoutBloodCenterNestedInput | No |
| Contact_Contact_blood_centerToBloodCenter | ContactUncheckedUpdateManyWithoutBloodCenter_Contact_blood_centerToBloodCenterNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| established_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| founder | Int | IntFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| established_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Person_Club_chairmanToPerson | PersonUpdateOneRequiredWithoutClub_Club_chairmanToPersonNestedInput | No |
| Person_Club_founderToPerson | PersonUpdateOneRequiredWithoutClub_Club_founderToPersonNestedInput | No |
| Version | VersionUpdateOneRequiredWithoutClubNestedInput | No |
| Person_Club_vice_chairmanToPerson | PersonUpdateOneRequiredWithoutClub_Club_vice_chairmanToPersonNestedInput | No |
| Contact_Contact_clubToClub | ContactUpdateManyWithoutClub_Contact_clubToClubNestedInput | No |
| Member | MemberUpdateManyWithoutClubNestedInput | No |
| Organization | OrganizationUpdateManyWithoutClubNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| established_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| chairman | Int | IntFieldUpdateOperationsInput | No |
| founder | Int | IntFieldUpdateOperationsInput | No |
| vice_chairman | Int | IntFieldUpdateOperationsInput | No |
| Contact_Contact_clubToClub | ContactUncheckedUpdateManyWithoutClub_Contact_clubToClubNestedInput | No |
| Member | MemberUncheckedUpdateManyWithoutClubNestedInput | No |
| Organization | OrganizationUncheckedUpdateManyWithoutClubNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| established_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| chairman | Int | IntFieldUpdateOperationsInput | No |
| founder | Int | IntFieldUpdateOperationsInput | No |
| vice_chairman | Int | IntFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| address_line | String | No |
| address_line_1 | String | Null | Yes |
| state | String | No |
| city | String | No |
| zip | String | No |
| phone | String | No |
| phone_1 | String | Null | Yes |
| fax | String | Null | Yes |
| String | Null | Yes | |
| email_1 | String | Null | Yes |
| website | String | Null | Yes |
| social_media | NullableJsonNullValueInput | Json | No |
| version | String | No |
| person | Int | Null | Yes |
| club | Int | Null | Yes |
| blood_center | Int | Null | Yes |
| donation | Int | Null | Yes |
| hospital | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| user | Int | No |
| ip_address | String | No |
| user_agent | String | No |
| login_status | String | No |
| session_id | String | Null | Yes |
| location | String | Null | Yes |
| authentication | AuthenticationMethod | Null | Yes |
| security_tokens | String | Null | Yes |
| logout_timestamp | DateTime | Null | Yes |
| version | String | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| user | Int | IntFieldUpdateOperationsInput | No |
| ip_address | String | StringFieldUpdateOperationsInput | No |
| user_agent | String | StringFieldUpdateOperationsInput | No |
| login_status | String | StringFieldUpdateOperationsInput | No |
| session_id | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| location | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| authentication | AuthenticationMethod | NullableEnumAuthenticationMethodFieldUpdateOperationsInput | Null | Yes |
| security_tokens | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| logout_timestamp | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| version | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| address_line | String | No |
| address_line_1 | String | Null | Yes |
| state | String | No |
| city | String | No |
| zip | String | No |
| phone | String | No |
| phone_1 | String | Null | Yes |
| fax | String | Null | Yes |
| String | Null | Yes | |
| email_1 | String | Null | Yes |
| website | String | Null | Yes |
| social_media | NullableJsonNullValueInput | Json | No |
| version | String | No |
| country | String | Null | Yes |
| person | Int | Null | Yes |
| club | Int | Null | Yes |
| blood_center | Int | Null | Yes |
| hospital | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| address_line | String | No |
| address_line_1 | String | Null | Yes |
| state | String | No |
| city | String | No |
| zip | String | No |
| phone | String | No |
| phone_1 | String | Null | Yes |
| fax | String | Null | Yes |
| String | Null | Yes | |
| email_1 | String | Null | Yes |
| website | String | Null | Yes |
| social_media | NullableJsonNullValueInput | Json | No |
| version | String | No |
| country | String | Null | Yes |
| person | Int | Null | Yes |
| club | Int | Null | Yes |
| blood_center | Int | Null | Yes |
| donation | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| name | String | No |
| founded_at | DateTime | No |
| accreditation | String | Null | Yes |
| bed_count | Int | Null | Yes |
| emergency_room | Boolean | Null | Yes |
| services | HospitalCreateservicesInput | String | No |
| specialties | HospitalCreatespecialtiesInput | String | No |
| rating | Float | Null | Yes |
| facility_type | FacilityType | Null | Yes |
| ownership | String | Null | Yes |
| insurance_accepted | String | Null | Yes |
| operating_hours | String | Null | Yes |
| infrastructure | String | Null | Yes |
| security_controls | String | Null | Yes |
| version | String | No |
| contact | Int | Null | Yes |
| founder | Int | Null | Yes |
| director | Int | Null | Yes |
| chairman | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| language | Language | No |
| time_format | TimeFormat | No |
| date_format | DateFormat | No |
| timezone | Timezone | No |
| theme | Theme | Null | Yes |
| email_notifications | Boolean | No |
| phone_notification | Boolean | No |
| push_notifications | Boolean | No |
| two_factor_auth | Boolean | Null | Yes |
| accountDeactivation | Boolean | Null | Yes |
| avatar | String | Null | Yes |
| clearBrowsingData | Boolean | Null | Yes |
| contactSupportLink | String | Null | Yes |
| dataRetentionDays | Int | Null | Yes |
| dataSharing | Boolean | Null | Yes |
| helpCenterLink | String | Null | Yes |
| high_contrast_mode | Boolean | Null | Yes |
| in_app_notifications | Boolean | Null | Yes |
| key_board_shortcut | Boolean | Null | Yes |
| notification_frequency | String | Null | Yes |
| notification_sound | String | Null | Yes |
| notification_vibrate | Boolean | Null | Yes |
| password_reset | Boolean | Null | Yes |
| security_answer | String | Null | Yes |
| security_question | String | Null | Yes |
| username | String | Null | Yes |
| version | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| username | String | Null | Yes |
| String | No | |
| password | String | No |
| status | AccountStatus | No |
| ip | String | No |
| two_factor_auth | Int | No |
| social_login | Int | No |
| person | Int | No |
| settings | Int | No |
| version | String | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| language | Language | No |
| time_format | TimeFormat | No |
| date_format | DateFormat | No |
| timezone | Timezone | No |
| theme | Theme | Null | Yes |
| email_notifications | Boolean | No |
| phone_notification | Boolean | No |
| push_notifications | Boolean | No |
| two_factor_auth | Boolean | Null | Yes |
| high_contrast_mode | Boolean | Null | Yes |
| in_app_notifications | Boolean | Null | Yes |
| key_board_shortcut | Boolean | Null | Yes |
| notification_frequency | String | Null | Yes |
| notification_sound | String | Null | Yes |
| notification_vibrate | Boolean | Null | Yes |
| password_reset | Boolean | Null | Yes |
| version | String | No |
| security_question | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| username | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| String | StringFieldUpdateOperationsInput | No | |
| password | String | StringFieldUpdateOperationsInput | No |
| status | AccountStatus | EnumAccountStatusFieldUpdateOperationsInput | No |
| ip | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| SecurityQuestion | SecurityQuestionUpdateManyWithoutUserNestedInput | No |
| Person | PersonUpdateOneRequiredWithoutUserNestedInput | No |
| SocialMediaLinks | SocialMediaLinksUpdateOneRequiredWithoutUserNestedInput | No |
| TwoFactorAuth | TwoFactorAuthUpdateOneRequiredWithoutUserNestedInput | No |
| UserSettings | UserSettingsUpdateOneRequiredWithoutUserNestedInput | No |
| Version | VersionUpdateOneRequiredWithoutUserNestedInput | No |
| UserRole | UserRoleUpdateManyWithoutUserNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| username | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| String | StringFieldUpdateOperationsInput | No | |
| password | String | StringFieldUpdateOperationsInput | No |
| status | AccountStatus | EnumAccountStatusFieldUpdateOperationsInput | No |
| ip | String | StringFieldUpdateOperationsInput | No |
| two_factor_auth | Int | IntFieldUpdateOperationsInput | No |
| social_login | Int | IntFieldUpdateOperationsInput | No |
| person | Int | IntFieldUpdateOperationsInput | No |
| settings | Int | IntFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| SecurityQuestion | SecurityQuestionUncheckedUpdateManyWithoutUserNestedInput | No |
| UserRole | UserRoleUncheckedUpdateManyWithoutUserNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| username | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| String | StringFieldUpdateOperationsInput | No | |
| password | String | StringFieldUpdateOperationsInput | No |
| status | AccountStatus | EnumAccountStatusFieldUpdateOperationsInput | No |
| ip | String | StringFieldUpdateOperationsInput | No |
| two_factor_auth | Int | IntFieldUpdateOperationsInput | No |
| social_login | Int | IntFieldUpdateOperationsInput | No |
| person | Int | IntFieldUpdateOperationsInput | No |
| settings | Int | IntFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| amount | Int | No |
| donated_at | DateTime | No |
| version | String | No |
| person | Int | No |
| organization | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| health_issue | String | No |
| blood_group | BloodGroup | No |
| quantity | Int | No |
| donation_type | String | No |
| datetime | DateTime | No |
| hospital_name | String | No |
| hospital_address | String | No |
| hospital_phone | String | No |
| hospital_email | String | No |
| version | String | No |
| personId | Int | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| amount | Int | IntFieldUpdateOperationsInput | No |
| donated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Contact | ContactUpdateManyWithoutDonationNestedInput | No |
| Organization | OrganizationUpdateOneRequiredWithoutDonationNestedInput | No |
| Person | PersonUpdateOneRequiredWithoutDonationNestedInput | No |
| Version | VersionUpdateOneRequiredWithoutDonationNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| amount | Int | IntFieldUpdateOperationsInput | No |
| donated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| person | Int | IntFieldUpdateOperationsInput | No |
| organization | Int | IntFieldUpdateOperationsInput | No |
| Contact | ContactUncheckedUpdateManyWithoutDonationNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| amount | Int | IntFieldUpdateOperationsInput | No |
| donated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| person | Int | IntFieldUpdateOperationsInput | No |
| organization | Int | IntFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| health_issue | String | StringFieldUpdateOperationsInput | No |
| blood_group | BloodGroup | EnumBloodGroupFieldUpdateOperationsInput | No |
| quantity | Int | IntFieldUpdateOperationsInput | No |
| donation_type | String | StringFieldUpdateOperationsInput | No |
| datetime | DateTime | DateTimeFieldUpdateOperationsInput | No |
| hospital_name | String | StringFieldUpdateOperationsInput | No |
| hospital_address | String | StringFieldUpdateOperationsInput | No |
| hospital_phone | String | StringFieldUpdateOperationsInput | No |
| hospital_email | String | StringFieldUpdateOperationsInput | No |
| Person | PersonUpdateOneRequiredWithoutRequestNestedInput | No |
| Version | VersionUpdateOneRequiredWithoutRequestNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| health_issue | String | StringFieldUpdateOperationsInput | No |
| blood_group | BloodGroup | EnumBloodGroupFieldUpdateOperationsInput | No |
| quantity | Int | IntFieldUpdateOperationsInput | No |
| donation_type | String | StringFieldUpdateOperationsInput | No |
| datetime | DateTime | DateTimeFieldUpdateOperationsInput | No |
| hospital_name | String | StringFieldUpdateOperationsInput | No |
| hospital_address | String | StringFieldUpdateOperationsInput | No |
| hospital_phone | String | StringFieldUpdateOperationsInput | No |
| hospital_email | String | StringFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| personId | Int | IntFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| health_issue | String | StringFieldUpdateOperationsInput | No |
| blood_group | BloodGroup | EnumBloodGroupFieldUpdateOperationsInput | No |
| quantity | Int | IntFieldUpdateOperationsInput | No |
| donation_type | String | StringFieldUpdateOperationsInput | No |
| datetime | DateTime | DateTimeFieldUpdateOperationsInput | No |
| hospital_name | String | StringFieldUpdateOperationsInput | No |
| hospital_address | String | StringFieldUpdateOperationsInput | No |
| hospital_phone | String | StringFieldUpdateOperationsInput | No |
| hospital_email | String | StringFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| personId | Int | IntFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| vehicle_number | String | No |
| ambulance_type | String | Null | Yes |
| person | Int | No |
| version | String | No |
| equipment | AmbulanceCreateequipmentInput | String | No |
| contact | Int | Null | Yes |
| color | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| amount | Int | No |
| donated_at | DateTime | No |
| version | String | No |
| person | Int | No |
| member | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| version | String | No |
| messages | String | Null | Yes |
| status | String | Null | Yes |
| priority | Int | No |
| subject | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| support | Int | No |
| message | String | No |
| author | Int | No |
| version | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| started_at | DateTime | No |
| ended_at | DateTime | No |
| version | String | No |
| members | Int | No |
| status | String | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| vehicle_number | String | StringFieldUpdateOperationsInput | No |
| ambulance_type | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| equipment | AmbulanceUpdateequipmentInput | String | No |
| color | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Contact | ContactUpdateOneWithoutAmbulanceNestedInput | No |
| Person | PersonUpdateOneRequiredWithoutAmbulanceNestedInput | No |
| Version | VersionUpdateOneRequiredWithoutAmbulanceNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| vehicle_number | String | StringFieldUpdateOperationsInput | No |
| ambulance_type | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| person | Int | IntFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| equipment | AmbulanceUpdateequipmentInput | String | No |
| contact | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| color | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| vehicle_number | String | StringFieldUpdateOperationsInput | No |
| ambulance_type | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| person | Int | IntFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| equipment | AmbulanceUpdateequipmentInput | String | No |
| contact | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| color | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| amount | Int | IntFieldUpdateOperationsInput | No |
| donated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Contact | ContactUpdateManyWithoutDonationNestedInput | No |
| Member | MemberUpdateOneRequiredWithoutDonationNestedInput | No |
| Person | PersonUpdateOneRequiredWithoutDonationNestedInput | No |
| Version | VersionUpdateOneRequiredWithoutDonationNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| amount | Int | IntFieldUpdateOperationsInput | No |
| donated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| person | Int | IntFieldUpdateOperationsInput | No |
| member | Int | IntFieldUpdateOperationsInput | No |
| Contact | ContactUncheckedUpdateManyWithoutDonationNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| amount | Int | IntFieldUpdateOperationsInput | No |
| donated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| person | Int | IntFieldUpdateOperationsInput | No |
| member | Int | IntFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| messages | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| status | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| priority | Int | IntFieldUpdateOperationsInput | No |
| subject | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Version | VersionUpdateOneRequiredWithoutSupportNestedInput | No |
| SupportMessage | SupportMessageUpdateManyWithoutSupportNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| messages | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| status | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| priority | Int | IntFieldUpdateOperationsInput | No |
| subject | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| SupportMessage | SupportMessageUncheckedUpdateManyWithoutSupportNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| messages | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| status | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| priority | Int | IntFieldUpdateOperationsInput | No |
| subject | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| message | String | StringFieldUpdateOperationsInput | No |
| Person | PersonUpdateOneRequiredWithoutSupportMessageNestedInput | No |
| Support | SupportUpdateOneRequiredWithoutSupportMessageNestedInput | No |
| Version | VersionUpdateOneRequiredWithoutSupportMessageNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| support | Int | IntFieldUpdateOperationsInput | No |
| message | String | StringFieldUpdateOperationsInput | No |
| author | Int | IntFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| support | Int | IntFieldUpdateOperationsInput | No |
| message | String | StringFieldUpdateOperationsInput | No |
| author | Int | IntFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| started_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| ended_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| status | String | StringFieldUpdateOperationsInput | No |
| Person_Person_teamIdToTeam | PersonUpdateManyWithoutTeam_Person_teamIdToTeamNestedInput | No |
| Person_Team_membersToPerson | PersonUpdateOneRequiredWithoutTeam_Team_membersToPersonNestedInput | No |
| Version | VersionUpdateOneRequiredWithoutTeamNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| started_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| ended_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| members | Int | IntFieldUpdateOperationsInput | No |
| status | String | StringFieldUpdateOperationsInput | No |
| Person_Person_teamIdToTeam | PersonUncheckedUpdateManyWithoutTeam_Person_teamIdToTeamNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| started_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| ended_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| members | Int | IntFieldUpdateOperationsInput | No |
| status | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| org_type | OrgType | No |
| org_id | Int | No |
| Volunteer | JsonNullValueInput | Json | No |
| personId | Int | No |
| clubId | Int | Null | Yes |
| version | String | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| org_type | OrgType | EnumOrgTypeFieldUpdateOperationsInput | No |
| org_id | Int | IntFieldUpdateOperationsInput | No |
| Volunteer | JsonNullValueInput | Json | No |
| Ambulance | AmbulanceUpdateManyWithoutOrganizationNestedInput | No |
| Donation | DonationUpdateManyWithoutOrganizationNestedInput | No |
| Club | ClubUpdateOneWithoutOrganizationNestedInput | No |
| Person | PersonUpdateOneRequiredWithoutOrganizationNestedInput | No |
| Version | VersionUpdateOneRequiredWithoutOrganizationNestedInput | No |
| Support | SupportUpdateManyWithoutOrganizationNestedInput | No |
| SupportMessage | SupportMessageUpdateManyWithoutOrganizationNestedInput | No |
| Team | TeamUpdateManyWithoutOrganizationNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| org_type | OrgType | EnumOrgTypeFieldUpdateOperationsInput | No |
| org_id | Int | IntFieldUpdateOperationsInput | No |
| Volunteer | JsonNullValueInput | Json | No |
| personId | Int | IntFieldUpdateOperationsInput | No |
| clubId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| version | String | StringFieldUpdateOperationsInput | No |
| Ambulance | AmbulanceUncheckedUpdateManyWithoutOrganizationNestedInput | No |
| Donation | DonationUncheckedUpdateManyWithoutOrganizationNestedInput | No |
| Support | SupportUncheckedUpdateManyWithoutOrganizationNestedInput | No |
| SupportMessage | SupportMessageUncheckedUpdateManyWithoutOrganizationNestedInput | No |
| Team | TeamUncheckedUpdateManyWithoutOrganizationNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| org_type | OrgType | EnumOrgTypeFieldUpdateOperationsInput | No |
| org_id | Int | IntFieldUpdateOperationsInput | No |
| Volunteer | JsonNullValueInput | Json | No |
| personId | Int | IntFieldUpdateOperationsInput | No |
| clubId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| version | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| vehicle_number | String | No |
| ambulance_type | String | Null | Yes |
| version | String | No |
| organization | Int | Null | Yes |
| equipment | AmbulanceCreateequipmentInput | String | No |
| contact | Int | Null | Yes |
| color | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| established_at | DateTime | No |
| version | String | No |
| contact | Int | Null | Yes |
| title | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| organization_id | Int | No |
| amount | Int | No |
| version | String | No |
| donated_at | DateTime | No |
| referred_by | String | Null | Yes |
| test_done | NullableJsonNullValueInput | Json | No |
| bags | BloodDonationCreatebagsInput | String | No |
| media_done | String | Null | Yes |
| media_used | String | Null | Yes |
| incubation | String | Null | Yes |
| note | String | Null | Yes |
| created_at | DateTime | Null | Yes |
| updated_at | DateTime | Null | Yes |
| cabin_no | String | Null | Yes |
| reg_no | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| name | String | No |
| established_at | DateTime | No |
| contact | Int | No |
| version | String | No |
| founder | Int | No |
| vice_chairman | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| name | String | No |
| established_at | DateTime | No |
| contact | Int | No |
| version | String | No |
| chairman | Int | No |
| vice_chairman | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| name | String | No |
| established_at | DateTime | No |
| contact | Int | No |
| version | String | No |
| chairman | Int | No |
| founder | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| address_line | String | No |
| address_line_1 | String | Null | Yes |
| state | String | No |
| city | String | No |
| zip | String | No |
| phone | String | No |
| phone_1 | String | Null | Yes |
| fax | String | Null | Yes |
| String | Null | Yes | |
| email_1 | String | Null | Yes |
| website | String | Null | Yes |
| social_media | NullableJsonNullValueInput | Json | No |
| version | String | No |
| country | String | Null | Yes |
| club | Int | Null | Yes |
| blood_center | Int | Null | Yes |
| donation | Int | Null | Yes |
| hospital | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| amount | Int | No |
| donated_at | DateTime | No |
| version | String | No |
| member | Int | No |
| organization | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| version | String | No |
| allergies | String | Null | Yes |
| complications | String | Null | Yes |
| medications | String | Null | Yes |
| blood_disorders | String | Null | Yes |
| club_id | Int | Null | Yes |
| infectious_diseases | String | Null | Yes |
| last_blood_donation | DateTime | Null | Yes |
| medical_conditions | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| org_type | OrgType | No |
| org_id | Int | No |
| Volunteer | JsonNullValueInput | Json | No |
| organizationSettingsId | Int | No |
| clubId | Int | Null | Yes |
| version | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| health_issue | String | No |
| blood_group | BloodGroup | No |
| quantity | Int | No |
| donation_type | String | No |
| datetime | DateTime | No |
| hospital_name | String | No |
| hospital_address | String | No |
| hospital_phone | String | No |
| hospital_email | String | No |
| version | String | No |
| memberId | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| organization | Int | No |
| support | Int | No |
| message | String | No |
| version | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| started_at | DateTime | No |
| ended_at | DateTime | No |
| organization | Int | No |
| version | String | No |
| status | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| username | String | Null | Yes |
| String | No | |
| password | String | No |
| status | AccountStatus | No |
| ip | String | No |
| two_factor_auth | Int | No |
| social_login | Int | No |
| logins | Int | No |
| settings | Int | No |
| version | String | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| vehicle_number | String | StringFieldUpdateOperationsInput | No |
| ambulance_type | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| equipment | AmbulanceUpdateequipmentInput | String | No |
| color | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Contact | ContactUpdateOneWithoutAmbulanceNestedInput | No |
| Organization | OrganizationUpdateOneWithoutAmbulanceNestedInput | No |
| Version | VersionUpdateOneRequiredWithoutAmbulanceNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| vehicle_number | String | StringFieldUpdateOperationsInput | No |
| ambulance_type | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| version | String | StringFieldUpdateOperationsInput | No |
| organization | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| equipment | AmbulanceUpdateequipmentInput | String | No |
| contact | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| color | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| vehicle_number | String | StringFieldUpdateOperationsInput | No |
| ambulance_type | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| version | String | StringFieldUpdateOperationsInput | No |
| organization | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| equipment | AmbulanceUpdateequipmentInput | String | No |
| contact | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| color | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| established_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| Contact_BloodCenter_contactToContact | ContactUpdateOneWithoutBloodCenter_BloodCenter_contactToContactNestedInput | No |
| Version | VersionUpdateOneRequiredWithoutBloodCenterNestedInput | No |
| BloodDonation | BloodDonationUpdateManyWithoutBloodCenterNestedInput | No |
| Contact_Contact_blood_centerToBloodCenter | ContactUpdateManyWithoutBloodCenter_Contact_blood_centerToBloodCenterNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| established_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| contact | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| title | String | StringFieldUpdateOperationsInput | No |
| BloodDonation | BloodDonationUncheckedUpdateManyWithoutBloodCenterNestedInput | No |
| Contact_Contact_blood_centerToBloodCenter | ContactUncheckedUpdateManyWithoutBloodCenter_Contact_blood_centerToBloodCenterNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| established_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| contact | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| title | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| established_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Contact_Club_contactToContact | ContactUpdateOneRequiredWithoutClub_Club_contactToContactNestedInput | No |
| Person_Club_founderToPerson | PersonUpdateOneRequiredWithoutClub_Club_founderToPersonNestedInput | No |
| Version | VersionUpdateOneRequiredWithoutClubNestedInput | No |
| Person_Club_vice_chairmanToPerson | PersonUpdateOneRequiredWithoutClub_Club_vice_chairmanToPersonNestedInput | No |
| Contact_Contact_clubToClub | ContactUpdateManyWithoutClub_Contact_clubToClubNestedInput | No |
| Member | MemberUpdateManyWithoutClubNestedInput | No |
| Organization | OrganizationUpdateManyWithoutClubNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| established_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| contact | Int | IntFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| founder | Int | IntFieldUpdateOperationsInput | No |
| vice_chairman | Int | IntFieldUpdateOperationsInput | No |
| Contact_Contact_clubToClub | ContactUncheckedUpdateManyWithoutClub_Contact_clubToClubNestedInput | No |
| Member | MemberUncheckedUpdateManyWithoutClubNestedInput | No |
| Organization | OrganizationUncheckedUpdateManyWithoutClubNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| established_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| contact | Int | IntFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| founder | Int | IntFieldUpdateOperationsInput | No |
| vice_chairman | Int | IntFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| established_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Person_Club_chairmanToPerson | PersonUpdateOneRequiredWithoutClub_Club_chairmanToPersonNestedInput | No |
| Contact_Club_contactToContact | ContactUpdateOneRequiredWithoutClub_Club_contactToContactNestedInput | No |
| Version | VersionUpdateOneRequiredWithoutClubNestedInput | No |
| Person_Club_vice_chairmanToPerson | PersonUpdateOneRequiredWithoutClub_Club_vice_chairmanToPersonNestedInput | No |
| Contact_Contact_clubToClub | ContactUpdateManyWithoutClub_Contact_clubToClubNestedInput | No |
| Member | MemberUpdateManyWithoutClubNestedInput | No |
| Organization | OrganizationUpdateManyWithoutClubNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| established_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| contact | Int | IntFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| chairman | Int | IntFieldUpdateOperationsInput | No |
| vice_chairman | Int | IntFieldUpdateOperationsInput | No |
| Contact_Contact_clubToClub | ContactUncheckedUpdateManyWithoutClub_Contact_clubToClubNestedInput | No |
| Member | MemberUncheckedUpdateManyWithoutClubNestedInput | No |
| Organization | OrganizationUncheckedUpdateManyWithoutClubNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| established_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| contact | Int | IntFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| chairman | Int | IntFieldUpdateOperationsInput | No |
| vice_chairman | Int | IntFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| established_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Person_Club_chairmanToPerson | PersonUpdateOneRequiredWithoutClub_Club_chairmanToPersonNestedInput | No |
| Contact_Club_contactToContact | ContactUpdateOneRequiredWithoutClub_Club_contactToContactNestedInput | No |
| Person_Club_founderToPerson | PersonUpdateOneRequiredWithoutClub_Club_founderToPersonNestedInput | No |
| Version | VersionUpdateOneRequiredWithoutClubNestedInput | No |
| Contact_Contact_clubToClub | ContactUpdateManyWithoutClub_Contact_clubToClubNestedInput | No |
| Member | MemberUpdateManyWithoutClubNestedInput | No |
| Organization | OrganizationUpdateManyWithoutClubNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| established_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| contact | Int | IntFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| chairman | Int | IntFieldUpdateOperationsInput | No |
| founder | Int | IntFieldUpdateOperationsInput | No |
| Contact_Contact_clubToClub | ContactUncheckedUpdateManyWithoutClub_Contact_clubToClubNestedInput | No |
| Member | MemberUncheckedUpdateManyWithoutClubNestedInput | No |
| Organization | OrganizationUncheckedUpdateManyWithoutClubNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| established_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| contact | Int | IntFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| chairman | Int | IntFieldUpdateOperationsInput | No |
| founder | Int | IntFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| amount | Int | IntFieldUpdateOperationsInput | No |
| donated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Contact | ContactUpdateManyWithoutDonationNestedInput | No |
| Member | MemberUpdateOneRequiredWithoutDonationNestedInput | No |
| Organization | OrganizationUpdateOneRequiredWithoutDonationNestedInput | No |
| Version | VersionUpdateOneRequiredWithoutDonationNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| amount | Int | IntFieldUpdateOperationsInput | No |
| donated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| member | Int | IntFieldUpdateOperationsInput | No |
| organization | Int | IntFieldUpdateOperationsInput | No |
| Contact | ContactUncheckedUpdateManyWithoutDonationNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| amount | Int | IntFieldUpdateOperationsInput | No |
| donated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| member | Int | IntFieldUpdateOperationsInput | No |
| organization | Int | IntFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| allergies | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| complications | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| medications | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| blood_disorders | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| infectious_diseases | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| last_blood_donation | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| medical_conditions | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Donation | DonationUpdateManyWithoutMemberNestedInput | No |
| Club | ClubUpdateOneWithoutMemberNestedInput | No |
| Version | VersionUpdateOneRequiredWithoutMemberNestedInput | No |
| Request | RequestUpdateManyWithoutMemberNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| allergies | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| complications | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| medications | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| blood_disorders | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| club_id | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| infectious_diseases | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| last_blood_donation | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| medical_conditions | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Donation | DonationUncheckedUpdateManyWithoutMemberNestedInput | No |
| Request | RequestUncheckedUpdateManyWithoutMemberNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| allergies | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| complications | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| medications | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| blood_disorders | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| club_id | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| infectious_diseases | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| last_blood_donation | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| medical_conditions | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| org_type | OrgType | EnumOrgTypeFieldUpdateOperationsInput | No |
| org_id | Int | IntFieldUpdateOperationsInput | No |
| Volunteer | JsonNullValueInput | Json | No |
| Ambulance | AmbulanceUpdateManyWithoutOrganizationNestedInput | No |
| Donation | DonationUpdateManyWithoutOrganizationNestedInput | No |
| Club | ClubUpdateOneWithoutOrganizationNestedInput | No |
| OrganizationSettings | OrganizationSettingsUpdateOneRequiredWithoutOrganizationNestedInput | No |
| Version | VersionUpdateOneRequiredWithoutOrganizationNestedInput | No |
| Support | SupportUpdateManyWithoutOrganizationNestedInput | No |
| SupportMessage | SupportMessageUpdateManyWithoutOrganizationNestedInput | No |
| Team | TeamUpdateManyWithoutOrganizationNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| org_type | OrgType | EnumOrgTypeFieldUpdateOperationsInput | No |
| org_id | Int | IntFieldUpdateOperationsInput | No |
| Volunteer | JsonNullValueInput | Json | No |
| organizationSettingsId | Int | IntFieldUpdateOperationsInput | No |
| clubId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| version | String | StringFieldUpdateOperationsInput | No |
| Ambulance | AmbulanceUncheckedUpdateManyWithoutOrganizationNestedInput | No |
| Donation | DonationUncheckedUpdateManyWithoutOrganizationNestedInput | No |
| Support | SupportUncheckedUpdateManyWithoutOrganizationNestedInput | No |
| SupportMessage | SupportMessageUncheckedUpdateManyWithoutOrganizationNestedInput | No |
| Team | TeamUncheckedUpdateManyWithoutOrganizationNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| org_type | OrgType | EnumOrgTypeFieldUpdateOperationsInput | No |
| org_id | Int | IntFieldUpdateOperationsInput | No |
| Volunteer | JsonNullValueInput | Json | No |
| organizationSettingsId | Int | IntFieldUpdateOperationsInput | No |
| clubId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| version | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| health_issue | String | StringFieldUpdateOperationsInput | No |
| blood_group | BloodGroup | EnumBloodGroupFieldUpdateOperationsInput | No |
| quantity | Int | IntFieldUpdateOperationsInput | No |
| donation_type | String | StringFieldUpdateOperationsInput | No |
| datetime | DateTime | DateTimeFieldUpdateOperationsInput | No |
| hospital_name | String | StringFieldUpdateOperationsInput | No |
| hospital_address | String | StringFieldUpdateOperationsInput | No |
| hospital_phone | String | StringFieldUpdateOperationsInput | No |
| hospital_email | String | StringFieldUpdateOperationsInput | No |
| Member | MemberUpdateOneWithoutRequestNestedInput | No |
| Version | VersionUpdateOneRequiredWithoutRequestNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| health_issue | String | StringFieldUpdateOperationsInput | No |
| blood_group | BloodGroup | EnumBloodGroupFieldUpdateOperationsInput | No |
| quantity | Int | IntFieldUpdateOperationsInput | No |
| donation_type | String | StringFieldUpdateOperationsInput | No |
| datetime | DateTime | DateTimeFieldUpdateOperationsInput | No |
| hospital_name | String | StringFieldUpdateOperationsInput | No |
| hospital_address | String | StringFieldUpdateOperationsInput | No |
| hospital_phone | String | StringFieldUpdateOperationsInput | No |
| hospital_email | String | StringFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| memberId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| health_issue | String | StringFieldUpdateOperationsInput | No |
| blood_group | BloodGroup | EnumBloodGroupFieldUpdateOperationsInput | No |
| quantity | Int | IntFieldUpdateOperationsInput | No |
| donation_type | String | StringFieldUpdateOperationsInput | No |
| datetime | DateTime | DateTimeFieldUpdateOperationsInput | No |
| hospital_name | String | StringFieldUpdateOperationsInput | No |
| hospital_address | String | StringFieldUpdateOperationsInput | No |
| hospital_phone | String | StringFieldUpdateOperationsInput | No |
| hospital_email | String | StringFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| memberId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| message | String | StringFieldUpdateOperationsInput | No |
| Organization | OrganizationUpdateOneRequiredWithoutSupportMessageNestedInput | No |
| Support | SupportUpdateOneRequiredWithoutSupportMessageNestedInput | No |
| Version | VersionUpdateOneRequiredWithoutSupportMessageNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| organization | Int | IntFieldUpdateOperationsInput | No |
| support | Int | IntFieldUpdateOperationsInput | No |
| message | String | StringFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| organization | Int | IntFieldUpdateOperationsInput | No |
| support | Int | IntFieldUpdateOperationsInput | No |
| message | String | StringFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| started_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| ended_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| status | String | StringFieldUpdateOperationsInput | No |
| Person_Person_teamIdToTeam | PersonUpdateManyWithoutTeam_Person_teamIdToTeamNestedInput | No |
| Organization | OrganizationUpdateOneRequiredWithoutTeamNestedInput | No |
| Version | VersionUpdateOneRequiredWithoutTeamNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| started_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| ended_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| organization | Int | IntFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| status | String | StringFieldUpdateOperationsInput | No |
| Person_Person_teamIdToTeam | PersonUncheckedUpdateManyWithoutTeam_Person_teamIdToTeamNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| started_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| ended_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| organization | Int | IntFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| status | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| username | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| String | StringFieldUpdateOperationsInput | No | |
| password | String | StringFieldUpdateOperationsInput | No |
| status | AccountStatus | EnumAccountStatusFieldUpdateOperationsInput | No |
| ip | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| SecurityQuestion | SecurityQuestionUpdateManyWithoutUserNestedInput | No |
| LoginRecord | LoginRecordUpdateOneRequiredWithoutUserNestedInput | No |
| SocialMediaLinks | SocialMediaLinksUpdateOneRequiredWithoutUserNestedInput | No |
| TwoFactorAuth | TwoFactorAuthUpdateOneRequiredWithoutUserNestedInput | No |
| UserSettings | UserSettingsUpdateOneRequiredWithoutUserNestedInput | No |
| Version | VersionUpdateOneRequiredWithoutUserNestedInput | No |
| UserRole | UserRoleUpdateManyWithoutUserNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| username | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| String | StringFieldUpdateOperationsInput | No | |
| password | String | StringFieldUpdateOperationsInput | No |
| status | AccountStatus | EnumAccountStatusFieldUpdateOperationsInput | No |
| ip | String | StringFieldUpdateOperationsInput | No |
| two_factor_auth | Int | IntFieldUpdateOperationsInput | No |
| social_login | Int | IntFieldUpdateOperationsInput | No |
| logins | Int | IntFieldUpdateOperationsInput | No |
| settings | Int | IntFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| SecurityQuestion | SecurityQuestionUncheckedUpdateManyWithoutUserNestedInput | No |
| UserRole | UserRoleUncheckedUpdateManyWithoutUserNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| username | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| String | StringFieldUpdateOperationsInput | No | |
| password | String | StringFieldUpdateOperationsInput | No |
| status | AccountStatus | EnumAccountStatusFieldUpdateOperationsInput | No |
| ip | String | StringFieldUpdateOperationsInput | No |
| two_factor_auth | Int | IntFieldUpdateOperationsInput | No |
| social_login | Int | IntFieldUpdateOperationsInput | No |
| logins | Int | IntFieldUpdateOperationsInput | No |
| settings | Int | IntFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| language | Language | No |
| time_format | TimeFormat | No |
| date_format | DateFormat | No |
| timezone | Timezone | No |
| theme | Theme | Null | Yes |
| email_notifications | Boolean | No |
| phone_notification | Boolean | No |
| push_notifications | Boolean | No |
| two_factor_auth | Boolean | Null | Yes |
| login_record_id | Int | No |
| high_contrast_mode | Boolean | Null | Yes |
| in_app_notifications | Boolean | Null | Yes |
| key_board_shortcut | Boolean | Null | Yes |
| notification_frequency | String | Null | Yes |
| notification_sound | String | Null | Yes |
| notification_vibrate | Boolean | Null | Yes |
| password_reset | Boolean | Null | Yes |
| version | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| username | String | Null | Yes |
| String | No | |
| password | String | No |
| status | AccountStatus | No |
| ip | String | No |
| two_factor_auth | Int | No |
| logins | Int | No |
| person | Int | No |
| settings | Int | No |
| version | String | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| username | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| String | StringFieldUpdateOperationsInput | No | |
| password | String | StringFieldUpdateOperationsInput | No |
| status | AccountStatus | EnumAccountStatusFieldUpdateOperationsInput | No |
| ip | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| SecurityQuestion | SecurityQuestionUpdateManyWithoutUserNestedInput | No |
| LoginRecord | LoginRecordUpdateOneRequiredWithoutUserNestedInput | No |
| Person | PersonUpdateOneRequiredWithoutUserNestedInput | No |
| TwoFactorAuth | TwoFactorAuthUpdateOneRequiredWithoutUserNestedInput | No |
| UserSettings | UserSettingsUpdateOneRequiredWithoutUserNestedInput | No |
| Version | VersionUpdateOneRequiredWithoutUserNestedInput | No |
| UserRole | UserRoleUpdateManyWithoutUserNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| username | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| String | StringFieldUpdateOperationsInput | No | |
| password | String | StringFieldUpdateOperationsInput | No |
| status | AccountStatus | EnumAccountStatusFieldUpdateOperationsInput | No |
| ip | String | StringFieldUpdateOperationsInput | No |
| two_factor_auth | Int | IntFieldUpdateOperationsInput | No |
| logins | Int | IntFieldUpdateOperationsInput | No |
| person | Int | IntFieldUpdateOperationsInput | No |
| settings | Int | IntFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| SecurityQuestion | SecurityQuestionUncheckedUpdateManyWithoutUserNestedInput | No |
| UserRole | UserRoleUncheckedUpdateManyWithoutUserNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| username | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| String | StringFieldUpdateOperationsInput | No | |
| password | String | StringFieldUpdateOperationsInput | No |
| status | AccountStatus | EnumAccountStatusFieldUpdateOperationsInput | No |
| ip | String | StringFieldUpdateOperationsInput | No |
| two_factor_auth | Int | IntFieldUpdateOperationsInput | No |
| logins | Int | IntFieldUpdateOperationsInput | No |
| person | Int | IntFieldUpdateOperationsInput | No |
| settings | Int | IntFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| organization | Int | No |
| message | String | No |
| author | Int | No |
| version | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| message | String | StringFieldUpdateOperationsInput | No |
| Person | PersonUpdateOneRequiredWithoutSupportMessageNestedInput | No |
| Organization | OrganizationUpdateOneRequiredWithoutSupportMessageNestedInput | No |
| Version | VersionUpdateOneRequiredWithoutSupportMessageNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| organization | Int | IntFieldUpdateOperationsInput | No |
| message | String | StringFieldUpdateOperationsInput | No |
| author | Int | IntFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| organization | Int | IntFieldUpdateOperationsInput | No |
| message | String | StringFieldUpdateOperationsInput | No |
| author | Int | IntFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| first_name | String | No |
| last_name | String | Null | Yes |
| father_name | String | Null | Yes |
| mother_name | String | Null | Yes |
| profession | String | Null | Yes |
| dob | DateTime | Null | Yes |
| gender | Gender | Null | Yes |
| version | String | No |
| avatar | String | Null | Yes |
| contact_id | Int | No |
| bid | String | Null | Yes |
| driving | String | Null | Yes |
| nid | String | Null | Yes |
| passport | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| username | String | Null | Yes |
| String | No | |
| password | String | No |
| status | AccountStatus | No |
| ip | String | No |
| social_login | Int | No |
| logins | Int | No |
| person | Int | No |
| settings | Int | No |
| version | String | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| username | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| String | StringFieldUpdateOperationsInput | No | |
| password | String | StringFieldUpdateOperationsInput | No |
| status | AccountStatus | EnumAccountStatusFieldUpdateOperationsInput | No |
| ip | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| SecurityQuestion | SecurityQuestionUpdateManyWithoutUserNestedInput | No |
| LoginRecord | LoginRecordUpdateOneRequiredWithoutUserNestedInput | No |
| Person | PersonUpdateOneRequiredWithoutUserNestedInput | No |
| SocialMediaLinks | SocialMediaLinksUpdateOneRequiredWithoutUserNestedInput | No |
| UserSettings | UserSettingsUpdateOneRequiredWithoutUserNestedInput | No |
| Version | VersionUpdateOneRequiredWithoutUserNestedInput | No |
| UserRole | UserRoleUpdateManyWithoutUserNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| username | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| String | StringFieldUpdateOperationsInput | No | |
| password | String | StringFieldUpdateOperationsInput | No |
| status | AccountStatus | EnumAccountStatusFieldUpdateOperationsInput | No |
| ip | String | StringFieldUpdateOperationsInput | No |
| social_login | Int | IntFieldUpdateOperationsInput | No |
| logins | Int | IntFieldUpdateOperationsInput | No |
| person | Int | IntFieldUpdateOperationsInput | No |
| settings | Int | IntFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| SecurityQuestion | SecurityQuestionUncheckedUpdateManyWithoutUserNestedInput | No |
| UserRole | UserRoleUncheckedUpdateManyWithoutUserNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| username | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| String | StringFieldUpdateOperationsInput | No | |
| password | String | StringFieldUpdateOperationsInput | No |
| status | AccountStatus | EnumAccountStatusFieldUpdateOperationsInput | No |
| ip | String | StringFieldUpdateOperationsInput | No |
| social_login | Int | IntFieldUpdateOperationsInput | No |
| logins | Int | IntFieldUpdateOperationsInput | No |
| person | Int | IntFieldUpdateOperationsInput | No |
| settings | Int | IntFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| question | String | No |
| answer | String | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| version | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| version | String | No |
| Name | Type | Nullable |
|---|---|---|
| question | String | StringFieldUpdateOperationsInput | No |
| answer | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Version | VersionUpdateOneRequiredWithoutSecurityQuestionNestedInput | No |
| UserSettings | UserSettingsUpdateManyWithoutSecurityQuestionNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| question | String | StringFieldUpdateOperationsInput | No |
| answer | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| UserSettings | UserSettingsUncheckedUpdateManyWithoutSecurityQuestionNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| question | String | StringFieldUpdateOperationsInput | No |
| answer | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| name | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Version | VersionUpdateOneRequiredWithoutUserRoleNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| username | String | Null | Yes |
| String | No | |
| password | String | No |
| status | AccountStatus | No |
| ip | String | No |
| two_factor_auth | Int | No |
| social_login | Int | No |
| logins | Int | No |
| person | Int | No |
| version | String | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| username | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| String | StringFieldUpdateOperationsInput | No | |
| password | String | StringFieldUpdateOperationsInput | No |
| status | AccountStatus | EnumAccountStatusFieldUpdateOperationsInput | No |
| ip | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| SecurityQuestion | SecurityQuestionUpdateManyWithoutUserNestedInput | No |
| LoginRecord | LoginRecordUpdateOneRequiredWithoutUserNestedInput | No |
| Person | PersonUpdateOneRequiredWithoutUserNestedInput | No |
| SocialMediaLinks | SocialMediaLinksUpdateOneRequiredWithoutUserNestedInput | No |
| TwoFactorAuth | TwoFactorAuthUpdateOneRequiredWithoutUserNestedInput | No |
| Version | VersionUpdateOneRequiredWithoutUserNestedInput | No |
| UserRole | UserRoleUpdateManyWithoutUserNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| username | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| String | StringFieldUpdateOperationsInput | No | |
| password | String | StringFieldUpdateOperationsInput | No |
| status | AccountStatus | EnumAccountStatusFieldUpdateOperationsInput | No |
| ip | String | StringFieldUpdateOperationsInput | No |
| two_factor_auth | Int | IntFieldUpdateOperationsInput | No |
| social_login | Int | IntFieldUpdateOperationsInput | No |
| logins | Int | IntFieldUpdateOperationsInput | No |
| person | Int | IntFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| SecurityQuestion | SecurityQuestionUncheckedUpdateManyWithoutUserNestedInput | No |
| UserRole | UserRoleUncheckedUpdateManyWithoutUserNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| username | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| String | StringFieldUpdateOperationsInput | No | |
| password | String | StringFieldUpdateOperationsInput | No |
| status | AccountStatus | EnumAccountStatusFieldUpdateOperationsInput | No |
| ip | String | StringFieldUpdateOperationsInput | No |
| two_factor_auth | Int | IntFieldUpdateOperationsInput | No |
| social_login | Int | IntFieldUpdateOperationsInput | No |
| logins | Int | IntFieldUpdateOperationsInput | No |
| person | Int | IntFieldUpdateOperationsInput | No |
| version | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| vehicle_number | String | No |
| ambulance_type | String | Null | Yes |
| person | Int | No |
| organization | Int | Null | Yes |
| equipment | AmbulanceCreateequipmentInput | String | No |
| contact | Int | Null | Yes |
| color | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| established_at | DateTime | No |
| founder | Int | No |
| contact | Int | Null | Yes |
| title | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| donor_id | Int | No |
| organization_id | Int | No |
| amount | Int | No |
| donated_at | DateTime | No |
| referred_by | String | Null | Yes |
| test_done | NullableJsonNullValueInput | Json | No |
| bags | BloodDonationCreatebagsInput | String | No |
| media_done | String | Null | Yes |
| media_used | String | Null | Yes |
| incubation | String | Null | Yes |
| note | String | Null | Yes |
| created_at | DateTime | Null | Yes |
| updated_at | DateTime | Null | Yes |
| cabin_no | String | Null | Yes |
| reg_no | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| name | String | No |
| established_at | DateTime | No |
| contact | Int | No |
| chairman | Int | No |
| founder | Int | No |
| vice_chairman | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| address_line | String | No |
| address_line_1 | String | Null | Yes |
| state | String | No |
| city | String | No |
| zip | String | No |
| phone | String | No |
| phone_1 | String | Null | Yes |
| fax | String | Null | Yes |
| String | Null | Yes | |
| email_1 | String | Null | Yes |
| website | String | Null | Yes |
| social_media | NullableJsonNullValueInput | Json | No |
| country | String | Null | Yes |
| person | Int | Null | Yes |
| club | Int | Null | Yes |
| blood_center | Int | Null | Yes |
| donation | Int | Null | Yes |
| hospital | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| alpha_3 | String | No |
| alpha_2 | String | No |
| numeric | String | No |
| name | String | No |
| created_at | DateTime | Null | Yes |
| updated_at | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | Null | Yes |
| updated_at | DateTime | Null | Yes |
| name | String | Null | Yes |
| mac_address | String | Null | Yes |
| model | String | Null | Yes |
| os | String | Null | Yes |
| os_version | String | Null | Yes |
| device_id | String | Null | Yes |
| brand | String | Null | Yes |
| manufacturer | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| amount | Int | No |
| donated_at | DateTime | No |
| person | Int | No |
| member | Int | No |
| organization | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| name | String | No |
| founded_at | DateTime | No |
| accreditation | String | Null | Yes |
| bed_count | Int | Null | Yes |
| emergency_room | Boolean | Null | Yes |
| services | HospitalCreateservicesInput | String | No |
| specialties | HospitalCreatespecialtiesInput | String | No |
| rating | Float | Null | Yes |
| facility_type | FacilityType | Null | Yes |
| ownership | String | Null | Yes |
| insurance_accepted | String | Null | Yes |
| operating_hours | String | Null | Yes |
| infrastructure | String | Null | Yes |
| security_controls | String | Null | Yes |
| location | Int | Null | Yes |
| contact | Int | Null | Yes |
| founder | Int | Null | Yes |
| director | Int | Null | Yes |
| chairman | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| latitude | Float | No |
| longitude | Float | No |
| created_at | DateTime | Null | Yes |
| updated_at | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| user | Int | No |
| ip_address | String | No |
| user_agent | String | No |
| login_status | String | No |
| session_id | String | Null | Yes |
| location | String | Null | Yes |
| authentication | AuthenticationMethod | Null | Yes |
| security_tokens | String | Null | Yes |
| logout_timestamp | DateTime | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| devices | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| allergies | String | Null | Yes |
| complications | String | Null | Yes |
| medications | String | Null | Yes |
| blood_disorders | String | Null | Yes |
| club_id | Int | Null | Yes |
| infectious_diseases | String | Null | Yes |
| last_blood_donation | DateTime | Null | Yes |
| medical_conditions | String | Null | Yes |
| person_id | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| org_type | OrgType | No |
| org_id | Int | No |
| Volunteer | JsonNullValueInput | Json | No |
| personId | Int | No |
| organizationSettingsId | Int | No |
| clubId | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| language | Language | No |
| time_format | TimeFormat | No |
| date_format | DateFormat | No |
| timezone | Timezone | No |
| theme | Theme | Null | Yes |
| email_notifications | Boolean | No |
| phone_notification | Boolean | No |
| push_notifications | Boolean | No |
| two_factor_auth | Boolean | Null | Yes |
| loginRecordId | Int | Null | Yes |
| accountDeactivation | Boolean | Null | Yes |
| avatar | String | Null | Yes |
| clearBrowsingData | Boolean | Null | Yes |
| contactSupportLink | String | Null | Yes |
| dataRetentionDays | Int | Null | Yes |
| dataSharing | Boolean | Null | Yes |
| helpCenterLink | String | Null | Yes |
| high_contrast_mode | Boolean | Null | Yes |
| in_app_notifications | Boolean | Null | Yes |
| key_board_shortcut | Boolean | Null | Yes |
| notification_frequency | String | Null | Yes |
| notification_sound | String | Null | Yes |
| notification_vibrate | Boolean | Null | Yes |
| password_reset | Boolean | Null | Yes |
| security_answer | String | Null | Yes |
| security_question | String | Null | Yes |
| username | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| first_name | String | No |
| last_name | String | Null | Yes |
| father_name | String | Null | Yes |
| mother_name | String | Null | Yes |
| profession | String | Null | Yes |
| dob | DateTime | Null | Yes |
| gender | Gender | Null | Yes |
| avatar | String | Null | Yes |
| contact_id | Int | No |
| teamId | Int | Null | Yes |
| bid | String | Null | Yes |
| driving | String | Null | Yes |
| nid | String | Null | Yes |
| passport | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| health_issue | String | No |
| blood_group | BloodGroup | No |
| quantity | Int | No |
| donation_type | String | No |
| datetime | DateTime | No |
| hospital_name | String | No |
| hospital_address | String | No |
| hospital_phone | String | No |
| hospital_email | String | No |
| memberId | Int | Null | Yes |
| personId | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| question | String | No |
| answer | String | No |
| userId | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| String | Null | Yes | |
| String | Null | Yes | |
| String | Null | Yes | |
| userId | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| organization | Int | No |
| messages | String | Null | Yes |
| status | String | Null | Yes |
| priority | Int | No |
| subject | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| organization | Int | No |
| support | Int | No |
| message | String | No |
| author | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| started_at | DateTime | No |
| ended_at | DateTime | No |
| organization | Int | No |
| members | Int | No |
| status | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| is_enabled | Boolean | No |
| secret_key | String | Null | Yes |
| user_id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| username | String | Null | Yes |
| String | No | |
| password | String | No |
| status | AccountStatus | No |
| ip | String | No |
| two_factor_auth | Int | No |
| social_login | Int | No |
| logins | Int | No |
| person | Int | No |
| settings | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| user_id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| language | Language | No |
| time_format | TimeFormat | No |
| date_format | DateFormat | No |
| timezone | Timezone | No |
| theme | Theme | Null | Yes |
| email_notifications | Boolean | No |
| phone_notification | Boolean | No |
| push_notifications | Boolean | No |
| two_factor_auth | Boolean | Null | Yes |
| login_record_id | Int | No |
| high_contrast_mode | Boolean | Null | Yes |
| in_app_notifications | Boolean | Null | Yes |
| key_board_shortcut | Boolean | Null | Yes |
| notification_frequency | String | Null | Yes |
| notification_sound | String | Null | Yes |
| notification_vibrate | Boolean | Null | Yes |
| password_reset | Boolean | Null | Yes |
| security_question | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| vehicle_number | String | StringFieldUpdateOperationsInput | No |
| ambulance_type | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| equipment | AmbulanceUpdateequipmentInput | String | No |
| color | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Contact | ContactUpdateOneWithoutAmbulanceNestedInput | No |
| Organization | OrganizationUpdateOneWithoutAmbulanceNestedInput | No |
| Person | PersonUpdateOneRequiredWithoutAmbulanceNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| vehicle_number | String | StringFieldUpdateOperationsInput | No |
| ambulance_type | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| person | Int | IntFieldUpdateOperationsInput | No |
| organization | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| equipment | AmbulanceUpdateequipmentInput | String | No |
| contact | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| color | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| vehicle_number | String | StringFieldUpdateOperationsInput | No |
| ambulance_type | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| person | Int | IntFieldUpdateOperationsInput | No |
| organization | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| equipment | AmbulanceUpdateequipmentInput | String | No |
| contact | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| color | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| established_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| Contact_BloodCenter_contactToContact | ContactUpdateOneWithoutBloodCenter_BloodCenter_contactToContactNestedInput | No |
| Person | PersonUpdateOneRequiredWithoutBloodCenterNestedInput | No |
| BloodDonation | BloodDonationUpdateManyWithoutBloodCenterNestedInput | No |
| Contact_Contact_blood_centerToBloodCenter | ContactUpdateManyWithoutBloodCenter_Contact_blood_centerToBloodCenterNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| established_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| founder | Int | IntFieldUpdateOperationsInput | No |
| contact | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| title | String | StringFieldUpdateOperationsInput | No |
| BloodDonation | BloodDonationUncheckedUpdateManyWithoutBloodCenterNestedInput | No |
| Contact_Contact_blood_centerToBloodCenter | ContactUncheckedUpdateManyWithoutBloodCenter_Contact_blood_centerToBloodCenterNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| established_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| founder | Int | IntFieldUpdateOperationsInput | No |
| contact | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| title | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| established_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Person_Club_chairmanToPerson | PersonUpdateOneRequiredWithoutClub_Club_chairmanToPersonNestedInput | No |
| Contact_Club_contactToContact | ContactUpdateOneRequiredWithoutClub_Club_contactToContactNestedInput | No |
| Person_Club_founderToPerson | PersonUpdateOneRequiredWithoutClub_Club_founderToPersonNestedInput | No |
| Person_Club_vice_chairmanToPerson | PersonUpdateOneRequiredWithoutClub_Club_vice_chairmanToPersonNestedInput | No |
| Contact_Contact_clubToClub | ContactUpdateManyWithoutClub_Contact_clubToClubNestedInput | No |
| Member | MemberUpdateManyWithoutClubNestedInput | No |
| Organization | OrganizationUpdateManyWithoutClubNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| established_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| contact | Int | IntFieldUpdateOperationsInput | No |
| chairman | Int | IntFieldUpdateOperationsInput | No |
| founder | Int | IntFieldUpdateOperationsInput | No |
| vice_chairman | Int | IntFieldUpdateOperationsInput | No |
| Contact_Contact_clubToClub | ContactUncheckedUpdateManyWithoutClub_Contact_clubToClubNestedInput | No |
| Member | MemberUncheckedUpdateManyWithoutClubNestedInput | No |
| Organization | OrganizationUncheckedUpdateManyWithoutClubNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| established_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| contact | Int | IntFieldUpdateOperationsInput | No |
| chairman | Int | IntFieldUpdateOperationsInput | No |
| founder | Int | IntFieldUpdateOperationsInput | No |
| vice_chairman | Int | IntFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| alpha_3 | String | StringFieldUpdateOperationsInput | No |
| alpha_2 | String | StringFieldUpdateOperationsInput | No |
| numeric | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| updated_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Contact | ContactUpdateManyWithoutCountryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| alpha_3 | String | StringFieldUpdateOperationsInput | No |
| alpha_2 | String | StringFieldUpdateOperationsInput | No |
| numeric | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| updated_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Contact | ContactUncheckedUpdateManyWithoutCountryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| alpha_3 | String | StringFieldUpdateOperationsInput | No |
| alpha_2 | String | StringFieldUpdateOperationsInput | No |
| numeric | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| updated_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| updated_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| name | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| mac_address | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| model | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| os | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| os_version | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| device_id | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| brand | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| manufacturer | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| LoginRecord | LoginRecordUpdateManyWithoutDeviceNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| updated_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| name | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| mac_address | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| model | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| os | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| os_version | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| device_id | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| brand | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| manufacturer | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| LoginRecord | LoginRecordUncheckedUpdateManyWithoutDeviceNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| updated_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| name | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| mac_address | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| model | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| os | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| os_version | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| device_id | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| brand | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| manufacturer | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| amount | Int | IntFieldUpdateOperationsInput | No |
| donated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Contact | ContactUpdateManyWithoutDonationNestedInput | No |
| Member | MemberUpdateOneRequiredWithoutDonationNestedInput | No |
| Organization | OrganizationUpdateOneRequiredWithoutDonationNestedInput | No |
| Person | PersonUpdateOneRequiredWithoutDonationNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| amount | Int | IntFieldUpdateOperationsInput | No |
| donated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| person | Int | IntFieldUpdateOperationsInput | No |
| member | Int | IntFieldUpdateOperationsInput | No |
| organization | Int | IntFieldUpdateOperationsInput | No |
| Contact | ContactUncheckedUpdateManyWithoutDonationNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| amount | Int | IntFieldUpdateOperationsInput | No |
| donated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| person | Int | IntFieldUpdateOperationsInput | No |
| member | Int | IntFieldUpdateOperationsInput | No |
| organization | Int | IntFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| latitude | Float | FloatFieldUpdateOperationsInput | No |
| longitude | Float | FloatFieldUpdateOperationsInput | No |
| created_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| updated_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Hospital | HospitalUpdateManyWithoutLocationNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| latitude | Float | FloatFieldUpdateOperationsInput | No |
| longitude | Float | FloatFieldUpdateOperationsInput | No |
| created_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| updated_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Hospital | HospitalUncheckedUpdateManyWithoutLocationNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| latitude | Float | FloatFieldUpdateOperationsInput | No |
| longitude | Float | FloatFieldUpdateOperationsInput | No |
| created_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| updated_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| user | Int | IntFieldUpdateOperationsInput | No |
| ip_address | String | StringFieldUpdateOperationsInput | No |
| user_agent | String | StringFieldUpdateOperationsInput | No |
| login_status | String | StringFieldUpdateOperationsInput | No |
| session_id | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| location | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| authentication | AuthenticationMethod | NullableEnumAuthenticationMethodFieldUpdateOperationsInput | Null | Yes |
| security_tokens | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| logout_timestamp | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| devices | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| allergies | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| complications | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| medications | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| blood_disorders | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| infectious_diseases | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| last_blood_donation | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| medical_conditions | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Donation | DonationUpdateManyWithoutMemberNestedInput | No |
| Club | ClubUpdateOneWithoutMemberNestedInput | No |
| Person | PersonUpdateOneWithoutMemberNestedInput | No |
| Request | RequestUpdateManyWithoutMemberNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| allergies | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| complications | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| medications | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| blood_disorders | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| club_id | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| infectious_diseases | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| last_blood_donation | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| medical_conditions | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| person_id | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Donation | DonationUncheckedUpdateManyWithoutMemberNestedInput | No |
| Request | RequestUncheckedUpdateManyWithoutMemberNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| allergies | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| complications | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| medications | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| blood_disorders | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| club_id | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| infectious_diseases | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| last_blood_donation | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| medical_conditions | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| person_id | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| org_type | OrgType | EnumOrgTypeFieldUpdateOperationsInput | No |
| org_id | Int | IntFieldUpdateOperationsInput | No |
| Volunteer | JsonNullValueInput | Json | No |
| Ambulance | AmbulanceUpdateManyWithoutOrganizationNestedInput | No |
| Donation | DonationUpdateManyWithoutOrganizationNestedInput | No |
| Club | ClubUpdateOneWithoutOrganizationNestedInput | No |
| OrganizationSettings | OrganizationSettingsUpdateOneRequiredWithoutOrganizationNestedInput | No |
| Person | PersonUpdateOneRequiredWithoutOrganizationNestedInput | No |
| Support | SupportUpdateManyWithoutOrganizationNestedInput | No |
| SupportMessage | SupportMessageUpdateManyWithoutOrganizationNestedInput | No |
| Team | TeamUpdateManyWithoutOrganizationNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| org_type | OrgType | EnumOrgTypeFieldUpdateOperationsInput | No |
| org_id | Int | IntFieldUpdateOperationsInput | No |
| Volunteer | JsonNullValueInput | Json | No |
| personId | Int | IntFieldUpdateOperationsInput | No |
| organizationSettingsId | Int | IntFieldUpdateOperationsInput | No |
| clubId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Ambulance | AmbulanceUncheckedUpdateManyWithoutOrganizationNestedInput | No |
| Donation | DonationUncheckedUpdateManyWithoutOrganizationNestedInput | No |
| Support | SupportUncheckedUpdateManyWithoutOrganizationNestedInput | No |
| SupportMessage | SupportMessageUncheckedUpdateManyWithoutOrganizationNestedInput | No |
| Team | TeamUncheckedUpdateManyWithoutOrganizationNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| org_type | OrgType | EnumOrgTypeFieldUpdateOperationsInput | No |
| org_id | Int | IntFieldUpdateOperationsInput | No |
| Volunteer | JsonNullValueInput | Json | No |
| personId | Int | IntFieldUpdateOperationsInput | No |
| organizationSettingsId | Int | IntFieldUpdateOperationsInput | No |
| clubId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| health_issue | String | StringFieldUpdateOperationsInput | No |
| blood_group | BloodGroup | EnumBloodGroupFieldUpdateOperationsInput | No |
| quantity | Int | IntFieldUpdateOperationsInput | No |
| donation_type | String | StringFieldUpdateOperationsInput | No |
| datetime | DateTime | DateTimeFieldUpdateOperationsInput | No |
| hospital_name | String | StringFieldUpdateOperationsInput | No |
| hospital_address | String | StringFieldUpdateOperationsInput | No |
| hospital_phone | String | StringFieldUpdateOperationsInput | No |
| hospital_email | String | StringFieldUpdateOperationsInput | No |
| Member | MemberUpdateOneWithoutRequestNestedInput | No |
| Person | PersonUpdateOneRequiredWithoutRequestNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| health_issue | String | StringFieldUpdateOperationsInput | No |
| blood_group | BloodGroup | EnumBloodGroupFieldUpdateOperationsInput | No |
| quantity | Int | IntFieldUpdateOperationsInput | No |
| donation_type | String | StringFieldUpdateOperationsInput | No |
| datetime | DateTime | DateTimeFieldUpdateOperationsInput | No |
| hospital_name | String | StringFieldUpdateOperationsInput | No |
| hospital_address | String | StringFieldUpdateOperationsInput | No |
| hospital_phone | String | StringFieldUpdateOperationsInput | No |
| hospital_email | String | StringFieldUpdateOperationsInput | No |
| memberId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| personId | Int | IntFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| health_issue | String | StringFieldUpdateOperationsInput | No |
| blood_group | BloodGroup | EnumBloodGroupFieldUpdateOperationsInput | No |
| quantity | Int | IntFieldUpdateOperationsInput | No |
| donation_type | String | StringFieldUpdateOperationsInput | No |
| datetime | DateTime | DateTimeFieldUpdateOperationsInput | No |
| hospital_name | String | StringFieldUpdateOperationsInput | No |
| hospital_address | String | StringFieldUpdateOperationsInput | No |
| hospital_phone | String | StringFieldUpdateOperationsInput | No |
| hospital_email | String | StringFieldUpdateOperationsInput | No |
| memberId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| personId | Int | IntFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| question | String | StringFieldUpdateOperationsInput | No |
| answer | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| User | UserUpdateOneRequiredWithoutSecurityQuestionNestedInput | No |
| UserSettings | UserSettingsUpdateManyWithoutSecurityQuestionNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| question | String | StringFieldUpdateOperationsInput | No |
| answer | String | StringFieldUpdateOperationsInput | No |
| userId | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| UserSettings | UserSettingsUncheckedUpdateManyWithoutSecurityQuestionNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| question | String | StringFieldUpdateOperationsInput | No |
| answer | String | StringFieldUpdateOperationsInput | No |
| userId | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| String | NullableStringFieldUpdateOperationsInput | Null | Yes | |
| String | NullableStringFieldUpdateOperationsInput | Null | Yes | |
| String | NullableStringFieldUpdateOperationsInput | Null | Yes | |
| userId | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| User | UserUpdateManyWithoutSocialMediaLinksNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| String | NullableStringFieldUpdateOperationsInput | Null | Yes | |
| String | NullableStringFieldUpdateOperationsInput | Null | Yes | |
| String | NullableStringFieldUpdateOperationsInput | Null | Yes | |
| userId | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| User | UserUncheckedUpdateManyWithoutSocialMediaLinksNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| String | NullableStringFieldUpdateOperationsInput | Null | Yes | |
| String | NullableStringFieldUpdateOperationsInput | Null | Yes | |
| String | NullableStringFieldUpdateOperationsInput | Null | Yes | |
| userId | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| messages | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| status | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| priority | Int | IntFieldUpdateOperationsInput | No |
| subject | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Organization | OrganizationUpdateOneRequiredWithoutSupportNestedInput | No |
| SupportMessage | SupportMessageUpdateManyWithoutSupportNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| organization | Int | IntFieldUpdateOperationsInput | No |
| messages | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| status | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| priority | Int | IntFieldUpdateOperationsInput | No |
| subject | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| SupportMessage | SupportMessageUncheckedUpdateManyWithoutSupportNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| organization | Int | IntFieldUpdateOperationsInput | No |
| messages | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| status | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| priority | Int | IntFieldUpdateOperationsInput | No |
| subject | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| message | String | StringFieldUpdateOperationsInput | No |
| Person | PersonUpdateOneRequiredWithoutSupportMessageNestedInput | No |
| Organization | OrganizationUpdateOneRequiredWithoutSupportMessageNestedInput | No |
| Support | SupportUpdateOneRequiredWithoutSupportMessageNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| organization | Int | IntFieldUpdateOperationsInput | No |
| support | Int | IntFieldUpdateOperationsInput | No |
| message | String | StringFieldUpdateOperationsInput | No |
| author | Int | IntFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| organization | Int | IntFieldUpdateOperationsInput | No |
| support | Int | IntFieldUpdateOperationsInput | No |
| message | String | StringFieldUpdateOperationsInput | No |
| author | Int | IntFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| started_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| ended_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| status | String | StringFieldUpdateOperationsInput | No |
| Person_Person_teamIdToTeam | PersonUpdateManyWithoutTeam_Person_teamIdToTeamNestedInput | No |
| Person_Team_membersToPerson | PersonUpdateOneRequiredWithoutTeam_Team_membersToPersonNestedInput | No |
| Organization | OrganizationUpdateOneRequiredWithoutTeamNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| started_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| ended_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| organization | Int | IntFieldUpdateOperationsInput | No |
| members | Int | IntFieldUpdateOperationsInput | No |
| status | String | StringFieldUpdateOperationsInput | No |
| Person_Person_teamIdToTeam | PersonUncheckedUpdateManyWithoutTeam_Person_teamIdToTeamNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| started_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| ended_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| organization | Int | IntFieldUpdateOperationsInput | No |
| members | Int | IntFieldUpdateOperationsInput | No |
| status | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| is_enabled | Boolean | BoolFieldUpdateOperationsInput | No |
| secret_key | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| user_id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| User | UserUpdateManyWithoutTwoFactorAuthNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| is_enabled | Boolean | BoolFieldUpdateOperationsInput | No |
| secret_key | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| user_id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| User | UserUncheckedUpdateManyWithoutTwoFactorAuthNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| is_enabled | Boolean | BoolFieldUpdateOperationsInput | No |
| secret_key | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| user_id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| username | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| String | StringFieldUpdateOperationsInput | No | |
| password | String | StringFieldUpdateOperationsInput | No |
| status | AccountStatus | EnumAccountStatusFieldUpdateOperationsInput | No |
| ip | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| SecurityQuestion | SecurityQuestionUpdateManyWithoutUserNestedInput | No |
| LoginRecord | LoginRecordUpdateOneRequiredWithoutUserNestedInput | No |
| Person | PersonUpdateOneRequiredWithoutUserNestedInput | No |
| SocialMediaLinks | SocialMediaLinksUpdateOneRequiredWithoutUserNestedInput | No |
| TwoFactorAuth | TwoFactorAuthUpdateOneRequiredWithoutUserNestedInput | No |
| UserSettings | UserSettingsUpdateOneRequiredWithoutUserNestedInput | No |
| UserRole | UserRoleUpdateManyWithoutUserNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| username | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| String | StringFieldUpdateOperationsInput | No | |
| password | String | StringFieldUpdateOperationsInput | No |
| status | AccountStatus | EnumAccountStatusFieldUpdateOperationsInput | No |
| ip | String | StringFieldUpdateOperationsInput | No |
| two_factor_auth | Int | IntFieldUpdateOperationsInput | No |
| social_login | Int | IntFieldUpdateOperationsInput | No |
| logins | Int | IntFieldUpdateOperationsInput | No |
| person | Int | IntFieldUpdateOperationsInput | No |
| settings | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| SecurityQuestion | SecurityQuestionUncheckedUpdateManyWithoutUserNestedInput | No |
| UserRole | UserRoleUncheckedUpdateManyWithoutUserNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| username | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| String | StringFieldUpdateOperationsInput | No | |
| password | String | StringFieldUpdateOperationsInput | No |
| status | AccountStatus | EnumAccountStatusFieldUpdateOperationsInput | No |
| ip | String | StringFieldUpdateOperationsInput | No |
| two_factor_auth | Int | IntFieldUpdateOperationsInput | No |
| social_login | Int | IntFieldUpdateOperationsInput | No |
| logins | Int | IntFieldUpdateOperationsInput | No |
| person | Int | IntFieldUpdateOperationsInput | No |
| settings | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| name | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| User | UserUpdateOneRequiredWithoutUserRoleNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| user_id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| user_id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | No |
| type | String | No |
| provider | String | No |
| providerAccountId | String | No |
| refresh_token | String | No |
| access_token | String | No |
| expires_at | BigInt | No |
| scope | String | No |
| id_token | String | Yes |
| session_state | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| vehicle_number | String | Yes |
| ambulance_type | String | No |
| person | Int | Yes |
| version | String | Yes |
| organization | Int | No |
| equipment | String | No |
| contact | Int | No |
| color | String | No |
| Contact | Contact | No |
| Organization | Organization | No |
| Person | Person | Yes |
| Version | Version | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| established_at | DateTime | Yes |
| version | String | Yes |
| founder | Int | Yes |
| contact | Int | No |
| title | String | Yes |
| Contact_BloodCenter_contactToContact | Contact | No |
| Person | Person | Yes |
| Version | Version | Yes |
| BloodDonation | BloodDonation[] | No |
| Contact_Contact_blood_centerToBloodCenter | Contact[] | No |
| _count | BloodCenterCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| donor_id | Int | Yes |
| organization_id | Int | Yes |
| amount | Int | Yes |
| version | String | Yes |
| donated_at | DateTime | Yes |
| referred_by | String | No |
| test_done | Json | No |
| bags | String | No |
| media_done | String | No |
| media_used | String | No |
| incubation | String | No |
| note | String | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| cabin_no | String | No |
| reg_no | String | No |
| BloodCenter | BloodCenter | Yes |
| Person | Person | Yes |
| Version | Version | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| name | String | Yes |
| established_at | DateTime | Yes |
| contact | Int | Yes |
| version | String | Yes |
| chairman | Int | Yes |
| founder | Int | Yes |
| vice_chairman | Int | Yes |
| Person_Club_chairmanToPerson | Person | Yes |
| Contact_Club_contactToContact | Contact | Yes |
| Person_Club_founderToPerson | Person | Yes |
| Version | Version | Yes |
| Person_Club_vice_chairmanToPerson | Person | Yes |
| Contact_Contact_clubToClub | Contact[] | No |
| Member | Member[] | No |
| Organization | Organization[] | No |
| _count | ClubCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| address_line | String | Yes |
| address_line_1 | String | No |
| state | String | Yes |
| city | String | Yes |
| zip | String | Yes |
| phone | String | Yes |
| phone_1 | String | No |
| fax | String | No |
| String | No | |
| email_1 | String | No |
| website | String | No |
| social_media | Json | No |
| version | String | Yes |
| country | String | No |
| person | Int | No |
| club | Int | No |
| blood_center | Int | No |
| donation | Int | No |
| hospital | Int | No |
| Ambulance | Ambulance[] | No |
| BloodCenter_BloodCenter_contactToContact | BloodCenter[] | No |
| Club_Club_contactToContact | Club[] | No |
| BloodCenter_Contact_blood_centerToBloodCenter | BloodCenter | No |
| Club_Contact_clubToClub | Club | No |
| Country | Country | No |
| Donation | Donation | No |
| Hospital_Contact_hospitalToHospital | Hospital | No |
| Person_Contact_personToPerson | Person | No |
| Version | Version | Yes |
| Hospital_Hospital_contactToContact | Hospital[] | No |
| Person_Person_contact_idToContact | Person[] | No |
| _count | ContactCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| alpha_3 | String | Yes |
| alpha_2 | String | Yes |
| numeric | String | Yes |
| name | String | Yes |
| version | String | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Contact | Contact[] | No |
| Version | Version | Yes |
| _count | CountryCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| name | String | No |
| mac_address | String | No |
| model | String | No |
| os | String | No |
| os_version | String | No |
| device_id | String | No |
| brand | String | No |
| manufacturer | String | No |
| version | String | Yes |
| Version | Version | Yes |
| LoginRecord | LoginRecord[] | No |
| _count | DeviceCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| amount | Int | Yes |
| donated_at | DateTime | Yes |
| version | String | Yes |
| person | Int | Yes |
| member | Int | Yes |
| organization | Int | Yes |
| Contact | Contact[] | No |
| Member | Member | Yes |
| Organization | Organization | Yes |
| Person | Person | Yes |
| Version | Version | Yes |
| _count | DonationCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| name | String | Yes |
| founded_at | DateTime | Yes |
| accreditation | String | No |
| bed_count | Int | No |
| emergency_room | Boolean | No |
| services | String | No |
| specialties | String | No |
| rating | Float | No |
| facility_type | FacilityType | No |
| ownership | String | No |
| insurance_accepted | String | No |
| operating_hours | String | No |
| infrastructure | String | No |
| security_controls | String | No |
| version | String | Yes |
| location | Int | No |
| contact | Int | No |
| founder | Int | No |
| director | Int | No |
| chairman | Int | No |
| Contact_Contact_hospitalToHospital | Contact[] | No |
| Contact_Hospital_contactToContact | Contact | No |
| Location | Location | No |
| Version | Version | Yes |
| _count | HospitalCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| latitude | Float | Yes |
| longitude | Float | Yes |
| version | String | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Hospital | Hospital[] | No |
| Version | Version | Yes |
| _count | LocationCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| user | Int | Yes |
| ip_address | String | Yes |
| user_agent | String | Yes |
| login_status | String | Yes |
| session_id | String | No |
| location | String | No |
| authentication | AuthenticationMethod | No |
| security_tokens | String | No |
| logout_timestamp | DateTime | No |
| version | String | Yes |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| devices | Int | No |
| Device | Device | No |
| Version | Version | Yes |
| OrganizationSettings | OrganizationSettings[] | No |
| User | User[] | No |
| UserSettings | UserSettings[] | No |
| _count | LoginRecordCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| version | String | Yes |
| allergies | String | No |
| complications | String | No |
| medications | String | No |
| blood_disorders | String | No |
| club_id | Int | No |
| infectious_diseases | String | No |
| last_blood_donation | DateTime | No |
| medical_conditions | String | No |
| person_id | Int | No |
| Donation | Donation[] | No |
| Club | Club | No |
| Person | Person | No |
| Version | Version | Yes |
| Request | Request[] | No |
| _count | MemberCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| org_type | OrgType | Yes |
| org_id | Int | Yes |
| Volunteer | Json | Yes |
| personId | Int | Yes |
| organizationSettingsId | Int | Yes |
| clubId | Int | No |
| version | String | Yes |
| Ambulance | Ambulance[] | No |
| Donation | Donation[] | No |
| Club | Club | No |
| OrganizationSettings | OrganizationSettings | Yes |
| Person | Person | Yes |
| Version | Version | Yes |
| Support | Support[] | No |
| SupportMessage | SupportMessage[] | No |
| Team | Team[] | No |
| _count | OrganizationCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| language | Language | Yes |
| time_format | TimeFormat | Yes |
| date_format | DateFormat | Yes |
| timezone | Timezone | Yes |
| theme | Theme | No |
| email_notifications | Boolean | Yes |
| phone_notification | Boolean | Yes |
| push_notifications | Boolean | Yes |
| two_factor_auth | Boolean | No |
| loginRecordId | Int | No |
| accountDeactivation | Boolean | No |
| avatar | String | No |
| clearBrowsingData | Boolean | No |
| contactSupportLink | String | No |
| dataRetentionDays | Int | No |
| dataSharing | Boolean | No |
| helpCenterLink | String | No |
| high_contrast_mode | Boolean | No |
| in_app_notifications | Boolean | No |
| key_board_shortcut | Boolean | No |
| notification_frequency | String | No |
| notification_sound | String | No |
| notification_vibrate | Boolean | No |
| password_reset | Boolean | No |
| security_answer | String | No |
| security_question | String | No |
| username | String | No |
| version | String | Yes |
| Organization | Organization[] | No |
| LoginRecord | LoginRecord | No |
| Version | Version | Yes |
| _count | OrganizationSettingsCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| first_name | String | Yes |
| last_name | String | No |
| father_name | String | No |
| mother_name | String | No |
| profession | String | No |
| dob | DateTime | No |
| gender | Gender | No |
| version | String | Yes |
| avatar | String | No |
| contact_id | Int | Yes |
| teamId | Int | No |
| bid | String | No |
| driving | String | No |
| nid | String | No |
| passport | String | No |
| Ambulance | Ambulance[] | No |
| BloodCenter | BloodCenter[] | No |
| BloodDonation | BloodDonation[] | No |
| Club_Club_chairmanToPerson | Club[] | No |
| Club_Club_founderToPerson | Club[] | No |
| Club_Club_vice_chairmanToPerson | Club[] | No |
| Contact_Contact_personToPerson | Contact[] | No |
| Donation | Donation[] | No |
| Member | Member[] | No |
| Organization | Organization[] | No |
| Contact_Person_contact_idToContact | Contact | Yes |
| Team_Person_teamIdToTeam | Team | No |
| Version | Version | Yes |
| Request | Request[] | No |
| SupportMessage | SupportMessage[] | No |
| Team_Team_membersToPerson | Team[] | No |
| User | User[] | No |
| _count | PersonCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| health_issue | String | Yes |
| blood_group | BloodGroup | Yes |
| quantity | Int | Yes |
| donation_type | String | Yes |
| datetime | DateTime | Yes |
| hospital_name | String | Yes |
| hospital_address | String | Yes |
| hospital_phone | String | Yes |
| hospital_email | String | Yes |
| version | String | Yes |
| memberId | Int | No |
| personId | Int | Yes |
| Member | Member | No |
| Person | Person | Yes |
| Version | Version | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| question | String | Yes |
| answer | String | Yes |
| userId | Int | Yes |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| version | String | Yes |
| User | User | Yes |
| Version | Version | Yes |
| UserSettings | UserSettings[] | No |
| _count | SecurityQuestionCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| String | No | |
| String | No | |
| String | No | |
| userId | Int | Yes |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| version | String | Yes |
| Version | Version | Yes |
| User | User[] | No |
| _count | SocialMediaLinksCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| version | String | Yes |
| organization | Int | Yes |
| messages | String | No |
| status | String | No |
| priority | Int | Yes |
| subject | String | No |
| Organization | Organization | Yes |
| Version | Version | Yes |
| SupportMessage | SupportMessage[] | No |
| _count | SupportCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| organization | Int | Yes |
| support | Int | Yes |
| message | String | Yes |
| author | Int | Yes |
| version | String | Yes |
| Person | Person | Yes |
| Organization | Organization | Yes |
| Support | Support | Yes |
| Version | Version | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| started_at | DateTime | Yes |
| ended_at | DateTime | Yes |
| organization | Int | Yes |
| version | String | Yes |
| members | Int | Yes |
| status | String | Yes |
| Person_Person_teamIdToTeam | Person[] | No |
| Person_Team_membersToPerson | Person | Yes |
| Organization | Organization | Yes |
| Version | Version | Yes |
| _count | TeamCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| is_enabled | Boolean | Yes |
| secret_key | String | No |
| user_id | Int | Yes |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| version | String | Yes |
| Version | Version | Yes |
| User | User[] | No |
| _count | TwoFactorAuthCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| username | String | No |
| String | Yes | |
| password | String | Yes |
| status | AccountStatus | Yes |
| ip | String | Yes |
| two_factor_auth | Int | Yes |
| social_login | Int | Yes |
| logins | Int | Yes |
| person | Int | Yes |
| settings | Int | Yes |
| version | String | Yes |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| SecurityQuestion | SecurityQuestion[] | No |
| LoginRecord | LoginRecord | Yes |
| Person | Person | Yes |
| SocialMediaLinks | SocialMediaLinks | Yes |
| TwoFactorAuth | TwoFactorAuth | Yes |
| UserSettings | UserSettings | Yes |
| Version | Version | Yes |
| UserRole | UserRole[] | No |
| _count | UserCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| name | String | Yes |
| user_id | Int | Yes |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| version | String | Yes |
| User | User | Yes |
| Version | Version | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| language | Language | Yes |
| time_format | TimeFormat | Yes |
| date_format | DateFormat | Yes |
| timezone | Timezone | Yes |
| theme | Theme | No |
| email_notifications | Boolean | Yes |
| phone_notification | Boolean | Yes |
| push_notifications | Boolean | Yes |
| two_factor_auth | Boolean | No |
| login_record_id | Int | Yes |
| high_contrast_mode | Boolean | No |
| in_app_notifications | Boolean | No |
| key_board_shortcut | Boolean | No |
| notification_frequency | String | No |
| notification_sound | String | No |
| notification_vibrate | Boolean | No |
| password_reset | Boolean | No |
| version | String | Yes |
| security_question | Int | No |
| User | User[] | No |
| LoginRecord | LoginRecord | Yes |
| SecurityQuestion | SecurityQuestion | No |
| Version | Version | Yes |
| _count | UserSettingsCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| slug | String | Yes |
| title | String | Yes |
| description | String | No |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| version | String | No |
| Ambulance | Ambulance[] | No |
| BloodCenter | BloodCenter[] | No |
| BloodDonation | BloodDonation[] | No |
| Club | Club[] | No |
| Contact | Contact[] | No |
| Country | Country[] | No |
| Device | Device[] | No |
| Donation | Donation[] | No |
| Hospital | Hospital[] | No |
| Location | Location[] | No |
| LoginRecord | LoginRecord[] | No |
| Member | Member[] | No |
| Organization | Organization[] | No |
| OrganizationSettings | OrganizationSettings[] | No |
| Person | Person[] | No |
| Request | Request[] | No |
| SecurityQuestion | SecurityQuestion[] | No |
| SocialMediaLinks | SocialMediaLinks[] | No |
| Support | Support[] | No |
| SupportMessage | SupportMessage[] | No |
| Team | Team[] | No |
| TwoFactorAuth | TwoFactorAuth[] | No |
| User | User[] | No |
| UserRole | UserRole[] | No |
| UserSettings | UserSettings[] | No |
| _count | VersionCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| _count | AccountCountAggregateOutputType | No |
| _avg | AccountAvgAggregateOutputType | No |
| _sum | AccountSumAggregateOutputType | No |
| _min | AccountMinAggregateOutputType | No |
| _max | AccountMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | No |
| type | String | No |
| provider | String | No |
| providerAccountId | String | No |
| refresh_token | String | No |
| access_token | String | No |
| expires_at | BigInt | No |
| scope | String | No |
| id_token | String | Yes |
| session_state | String | No |
| _count | AccountCountAggregateOutputType | No |
| _avg | AccountAvgAggregateOutputType | No |
| _sum | AccountSumAggregateOutputType | No |
| _min | AccountMinAggregateOutputType | No |
| _max | AccountMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | AmbulanceCountAggregateOutputType | No |
| _avg | AmbulanceAvgAggregateOutputType | No |
| _sum | AmbulanceSumAggregateOutputType | No |
| _min | AmbulanceMinAggregateOutputType | No |
| _max | AmbulanceMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| vehicle_number | String | Yes |
| ambulance_type | String | No |
| person | Int | Yes |
| version | String | Yes |
| organization | Int | No |
| equipment | String | No |
| contact | Int | No |
| color | String | No |
| _count | AmbulanceCountAggregateOutputType | No |
| _avg | AmbulanceAvgAggregateOutputType | No |
| _sum | AmbulanceSumAggregateOutputType | No |
| _min | AmbulanceMinAggregateOutputType | No |
| _max | AmbulanceMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | BloodCenterCountAggregateOutputType | No |
| _avg | BloodCenterAvgAggregateOutputType | No |
| _sum | BloodCenterSumAggregateOutputType | No |
| _min | BloodCenterMinAggregateOutputType | No |
| _max | BloodCenterMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| established_at | DateTime | Yes |
| version | String | Yes |
| founder | Int | Yes |
| contact | Int | No |
| title | String | Yes |
| _count | BloodCenterCountAggregateOutputType | No |
| _avg | BloodCenterAvgAggregateOutputType | No |
| _sum | BloodCenterSumAggregateOutputType | No |
| _min | BloodCenterMinAggregateOutputType | No |
| _max | BloodCenterMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | BloodDonationCountAggregateOutputType | No |
| _avg | BloodDonationAvgAggregateOutputType | No |
| _sum | BloodDonationSumAggregateOutputType | No |
| _min | BloodDonationMinAggregateOutputType | No |
| _max | BloodDonationMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| donor_id | Int | Yes |
| organization_id | Int | Yes |
| amount | Int | Yes |
| version | String | Yes |
| donated_at | DateTime | Yes |
| referred_by | String | No |
| test_done | Json | No |
| bags | String | No |
| media_done | String | No |
| media_used | String | No |
| incubation | String | No |
| note | String | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| cabin_no | String | No |
| reg_no | String | No |
| _count | BloodDonationCountAggregateOutputType | No |
| _avg | BloodDonationAvgAggregateOutputType | No |
| _sum | BloodDonationSumAggregateOutputType | No |
| _min | BloodDonationMinAggregateOutputType | No |
| _max | BloodDonationMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | ClubCountAggregateOutputType | No |
| _avg | ClubAvgAggregateOutputType | No |
| _sum | ClubSumAggregateOutputType | No |
| _min | ClubMinAggregateOutputType | No |
| _max | ClubMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| name | String | Yes |
| established_at | DateTime | Yes |
| contact | Int | Yes |
| version | String | Yes |
| chairman | Int | Yes |
| founder | Int | Yes |
| vice_chairman | Int | Yes |
| _count | ClubCountAggregateOutputType | No |
| _avg | ClubAvgAggregateOutputType | No |
| _sum | ClubSumAggregateOutputType | No |
| _min | ClubMinAggregateOutputType | No |
| _max | ClubMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | ContactCountAggregateOutputType | No |
| _avg | ContactAvgAggregateOutputType | No |
| _sum | ContactSumAggregateOutputType | No |
| _min | ContactMinAggregateOutputType | No |
| _max | ContactMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| address_line | String | Yes |
| address_line_1 | String | No |
| state | String | Yes |
| city | String | Yes |
| zip | String | Yes |
| phone | String | Yes |
| phone_1 | String | No |
| fax | String | No |
| String | No | |
| email_1 | String | No |
| website | String | No |
| social_media | Json | No |
| version | String | Yes |
| country | String | No |
| person | Int | No |
| club | Int | No |
| blood_center | Int | No |
| donation | Int | No |
| hospital | Int | No |
| _count | ContactCountAggregateOutputType | No |
| _avg | ContactAvgAggregateOutputType | No |
| _sum | ContactSumAggregateOutputType | No |
| _min | ContactMinAggregateOutputType | No |
| _max | ContactMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | CountryCountAggregateOutputType | No |
| _min | CountryMinAggregateOutputType | No |
| _max | CountryMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| alpha_3 | String | Yes |
| alpha_2 | String | Yes |
| numeric | String | Yes |
| name | String | Yes |
| version | String | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| _count | CountryCountAggregateOutputType | No |
| _min | CountryMinAggregateOutputType | No |
| _max | CountryMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | DeviceCountAggregateOutputType | No |
| _avg | DeviceAvgAggregateOutputType | No |
| _sum | DeviceSumAggregateOutputType | No |
| _min | DeviceMinAggregateOutputType | No |
| _max | DeviceMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| name | String | No |
| mac_address | String | No |
| model | String | No |
| os | String | No |
| os_version | String | No |
| device_id | String | No |
| brand | String | No |
| manufacturer | String | No |
| version | String | Yes |
| _count | DeviceCountAggregateOutputType | No |
| _avg | DeviceAvgAggregateOutputType | No |
| _sum | DeviceSumAggregateOutputType | No |
| _min | DeviceMinAggregateOutputType | No |
| _max | DeviceMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | DonationCountAggregateOutputType | No |
| _avg | DonationAvgAggregateOutputType | No |
| _sum | DonationSumAggregateOutputType | No |
| _min | DonationMinAggregateOutputType | No |
| _max | DonationMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| amount | Int | Yes |
| donated_at | DateTime | Yes |
| version | String | Yes |
| person | Int | Yes |
| member | Int | Yes |
| organization | Int | Yes |
| _count | DonationCountAggregateOutputType | No |
| _avg | DonationAvgAggregateOutputType | No |
| _sum | DonationSumAggregateOutputType | No |
| _min | DonationMinAggregateOutputType | No |
| _max | DonationMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | HospitalCountAggregateOutputType | No |
| _avg | HospitalAvgAggregateOutputType | No |
| _sum | HospitalSumAggregateOutputType | No |
| _min | HospitalMinAggregateOutputType | No |
| _max | HospitalMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| name | String | Yes |
| founded_at | DateTime | Yes |
| accreditation | String | No |
| bed_count | Int | No |
| emergency_room | Boolean | No |
| services | String | No |
| specialties | String | No |
| rating | Float | No |
| facility_type | FacilityType | No |
| ownership | String | No |
| insurance_accepted | String | No |
| operating_hours | String | No |
| infrastructure | String | No |
| security_controls | String | No |
| version | String | Yes |
| location | Int | No |
| contact | Int | No |
| founder | Int | No |
| director | Int | No |
| chairman | Int | No |
| _count | HospitalCountAggregateOutputType | No |
| _avg | HospitalAvgAggregateOutputType | No |
| _sum | HospitalSumAggregateOutputType | No |
| _min | HospitalMinAggregateOutputType | No |
| _max | HospitalMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | LocationCountAggregateOutputType | No |
| _avg | LocationAvgAggregateOutputType | No |
| _sum | LocationSumAggregateOutputType | No |
| _min | LocationMinAggregateOutputType | No |
| _max | LocationMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| latitude | Float | Yes |
| longitude | Float | Yes |
| version | String | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| _count | LocationCountAggregateOutputType | No |
| _avg | LocationAvgAggregateOutputType | No |
| _sum | LocationSumAggregateOutputType | No |
| _min | LocationMinAggregateOutputType | No |
| _max | LocationMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | LoginRecordCountAggregateOutputType | No |
| _avg | LoginRecordAvgAggregateOutputType | No |
| _sum | LoginRecordSumAggregateOutputType | No |
| _min | LoginRecordMinAggregateOutputType | No |
| _max | LoginRecordMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| user | Int | Yes |
| ip_address | String | Yes |
| user_agent | String | Yes |
| login_status | String | Yes |
| session_id | String | No |
| location | String | No |
| authentication | AuthenticationMethod | No |
| security_tokens | String | No |
| logout_timestamp | DateTime | No |
| version | String | Yes |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| devices | Int | No |
| _count | LoginRecordCountAggregateOutputType | No |
| _avg | LoginRecordAvgAggregateOutputType | No |
| _sum | LoginRecordSumAggregateOutputType | No |
| _min | LoginRecordMinAggregateOutputType | No |
| _max | LoginRecordMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | MemberCountAggregateOutputType | No |
| _avg | MemberAvgAggregateOutputType | No |
| _sum | MemberSumAggregateOutputType | No |
| _min | MemberMinAggregateOutputType | No |
| _max | MemberMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| version | String | Yes |
| allergies | String | No |
| complications | String | No |
| medications | String | No |
| blood_disorders | String | No |
| club_id | Int | No |
| infectious_diseases | String | No |
| last_blood_donation | DateTime | No |
| medical_conditions | String | No |
| person_id | Int | No |
| _count | MemberCountAggregateOutputType | No |
| _avg | MemberAvgAggregateOutputType | No |
| _sum | MemberSumAggregateOutputType | No |
| _min | MemberMinAggregateOutputType | No |
| _max | MemberMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | OrganizationCountAggregateOutputType | No |
| _avg | OrganizationAvgAggregateOutputType | No |
| _sum | OrganizationSumAggregateOutputType | No |
| _min | OrganizationMinAggregateOutputType | No |
| _max | OrganizationMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| org_type | OrgType | Yes |
| org_id | Int | Yes |
| Volunteer | Json | Yes |
| personId | Int | Yes |
| organizationSettingsId | Int | Yes |
| clubId | Int | No |
| version | String | Yes |
| _count | OrganizationCountAggregateOutputType | No |
| _avg | OrganizationAvgAggregateOutputType | No |
| _sum | OrganizationSumAggregateOutputType | No |
| _min | OrganizationMinAggregateOutputType | No |
| _max | OrganizationMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | OrganizationSettingsCountAggregateOutputType | No |
| _avg | OrganizationSettingsAvgAggregateOutputType | No |
| _sum | OrganizationSettingsSumAggregateOutputType | No |
| _min | OrganizationSettingsMinAggregateOutputType | No |
| _max | OrganizationSettingsMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| language | Language | Yes |
| time_format | TimeFormat | Yes |
| date_format | DateFormat | Yes |
| timezone | Timezone | Yes |
| theme | Theme | No |
| email_notifications | Boolean | Yes |
| phone_notification | Boolean | Yes |
| push_notifications | Boolean | Yes |
| two_factor_auth | Boolean | No |
| loginRecordId | Int | No |
| accountDeactivation | Boolean | No |
| avatar | String | No |
| clearBrowsingData | Boolean | No |
| contactSupportLink | String | No |
| dataRetentionDays | Int | No |
| dataSharing | Boolean | No |
| helpCenterLink | String | No |
| high_contrast_mode | Boolean | No |
| in_app_notifications | Boolean | No |
| key_board_shortcut | Boolean | No |
| notification_frequency | String | No |
| notification_sound | String | No |
| notification_vibrate | Boolean | No |
| password_reset | Boolean | No |
| security_answer | String | No |
| security_question | String | No |
| username | String | No |
| version | String | Yes |
| _count | OrganizationSettingsCountAggregateOutputType | No |
| _avg | OrganizationSettingsAvgAggregateOutputType | No |
| _sum | OrganizationSettingsSumAggregateOutputType | No |
| _min | OrganizationSettingsMinAggregateOutputType | No |
| _max | OrganizationSettingsMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | PersonCountAggregateOutputType | No |
| _avg | PersonAvgAggregateOutputType | No |
| _sum | PersonSumAggregateOutputType | No |
| _min | PersonMinAggregateOutputType | No |
| _max | PersonMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| first_name | String | Yes |
| last_name | String | No |
| father_name | String | No |
| mother_name | String | No |
| profession | String | No |
| dob | DateTime | No |
| gender | Gender | No |
| version | String | Yes |
| avatar | String | No |
| contact_id | Int | Yes |
| teamId | Int | No |
| bid | String | No |
| driving | String | No |
| nid | String | No |
| passport | String | No |
| _count | PersonCountAggregateOutputType | No |
| _avg | PersonAvgAggregateOutputType | No |
| _sum | PersonSumAggregateOutputType | No |
| _min | PersonMinAggregateOutputType | No |
| _max | PersonMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | RequestCountAggregateOutputType | No |
| _avg | RequestAvgAggregateOutputType | No |
| _sum | RequestSumAggregateOutputType | No |
| _min | RequestMinAggregateOutputType | No |
| _max | RequestMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| health_issue | String | Yes |
| blood_group | BloodGroup | Yes |
| quantity | Int | Yes |
| donation_type | String | Yes |
| datetime | DateTime | Yes |
| hospital_name | String | Yes |
| hospital_address | String | Yes |
| hospital_phone | String | Yes |
| hospital_email | String | Yes |
| version | String | Yes |
| memberId | Int | No |
| personId | Int | Yes |
| _count | RequestCountAggregateOutputType | No |
| _avg | RequestAvgAggregateOutputType | No |
| _sum | RequestSumAggregateOutputType | No |
| _min | RequestMinAggregateOutputType | No |
| _max | RequestMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SecurityQuestionCountAggregateOutputType | No |
| _avg | SecurityQuestionAvgAggregateOutputType | No |
| _sum | SecurityQuestionSumAggregateOutputType | No |
| _min | SecurityQuestionMinAggregateOutputType | No |
| _max | SecurityQuestionMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| question | String | Yes |
| answer | String | Yes |
| userId | Int | Yes |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| version | String | Yes |
| _count | SecurityQuestionCountAggregateOutputType | No |
| _avg | SecurityQuestionAvgAggregateOutputType | No |
| _sum | SecurityQuestionSumAggregateOutputType | No |
| _min | SecurityQuestionMinAggregateOutputType | No |
| _max | SecurityQuestionMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SocialMediaLinksCountAggregateOutputType | No |
| _avg | SocialMediaLinksAvgAggregateOutputType | No |
| _sum | SocialMediaLinksSumAggregateOutputType | No |
| _min | SocialMediaLinksMinAggregateOutputType | No |
| _max | SocialMediaLinksMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| String | No | |
| String | No | |
| String | No | |
| userId | Int | Yes |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| version | String | Yes |
| _count | SocialMediaLinksCountAggregateOutputType | No |
| _avg | SocialMediaLinksAvgAggregateOutputType | No |
| _sum | SocialMediaLinksSumAggregateOutputType | No |
| _min | SocialMediaLinksMinAggregateOutputType | No |
| _max | SocialMediaLinksMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SupportCountAggregateOutputType | No |
| _avg | SupportAvgAggregateOutputType | No |
| _sum | SupportSumAggregateOutputType | No |
| _min | SupportMinAggregateOutputType | No |
| _max | SupportMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| version | String | Yes |
| organization | Int | Yes |
| messages | String | No |
| status | String | No |
| priority | Int | Yes |
| subject | String | No |
| _count | SupportCountAggregateOutputType | No |
| _avg | SupportAvgAggregateOutputType | No |
| _sum | SupportSumAggregateOutputType | No |
| _min | SupportMinAggregateOutputType | No |
| _max | SupportMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SupportMessageCountAggregateOutputType | No |
| _avg | SupportMessageAvgAggregateOutputType | No |
| _sum | SupportMessageSumAggregateOutputType | No |
| _min | SupportMessageMinAggregateOutputType | No |
| _max | SupportMessageMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| organization | Int | Yes |
| support | Int | Yes |
| message | String | Yes |
| author | Int | Yes |
| version | String | Yes |
| _count | SupportMessageCountAggregateOutputType | No |
| _avg | SupportMessageAvgAggregateOutputType | No |
| _sum | SupportMessageSumAggregateOutputType | No |
| _min | SupportMessageMinAggregateOutputType | No |
| _max | SupportMessageMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | TeamCountAggregateOutputType | No |
| _avg | TeamAvgAggregateOutputType | No |
| _sum | TeamSumAggregateOutputType | No |
| _min | TeamMinAggregateOutputType | No |
| _max | TeamMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| started_at | DateTime | Yes |
| ended_at | DateTime | Yes |
| organization | Int | Yes |
| version | String | Yes |
| members | Int | Yes |
| status | String | Yes |
| _count | TeamCountAggregateOutputType | No |
| _avg | TeamAvgAggregateOutputType | No |
| _sum | TeamSumAggregateOutputType | No |
| _min | TeamMinAggregateOutputType | No |
| _max | TeamMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | TwoFactorAuthCountAggregateOutputType | No |
| _avg | TwoFactorAuthAvgAggregateOutputType | No |
| _sum | TwoFactorAuthSumAggregateOutputType | No |
| _min | TwoFactorAuthMinAggregateOutputType | No |
| _max | TwoFactorAuthMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| is_enabled | Boolean | Yes |
| secret_key | String | No |
| user_id | Int | Yes |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| version | String | Yes |
| _count | TwoFactorAuthCountAggregateOutputType | No |
| _avg | TwoFactorAuthAvgAggregateOutputType | No |
| _sum | TwoFactorAuthSumAggregateOutputType | No |
| _min | TwoFactorAuthMinAggregateOutputType | No |
| _max | TwoFactorAuthMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | UserCountAggregateOutputType | No |
| _avg | UserAvgAggregateOutputType | No |
| _sum | UserSumAggregateOutputType | No |
| _min | UserMinAggregateOutputType | No |
| _max | UserMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| username | String | No |
| String | Yes | |
| password | String | Yes |
| status | AccountStatus | Yes |
| ip | String | Yes |
| two_factor_auth | Int | Yes |
| social_login | Int | Yes |
| logins | Int | Yes |
| person | Int | Yes |
| settings | Int | Yes |
| version | String | Yes |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| _count | UserCountAggregateOutputType | No |
| _avg | UserAvgAggregateOutputType | No |
| _sum | UserSumAggregateOutputType | No |
| _min | UserMinAggregateOutputType | No |
| _max | UserMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | UserRoleCountAggregateOutputType | No |
| _avg | UserRoleAvgAggregateOutputType | No |
| _sum | UserRoleSumAggregateOutputType | No |
| _min | UserRoleMinAggregateOutputType | No |
| _max | UserRoleMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| name | String | Yes |
| user_id | Int | Yes |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| version | String | Yes |
| _count | UserRoleCountAggregateOutputType | No |
| _avg | UserRoleAvgAggregateOutputType | No |
| _sum | UserRoleSumAggregateOutputType | No |
| _min | UserRoleMinAggregateOutputType | No |
| _max | UserRoleMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | UserSettingsCountAggregateOutputType | No |
| _avg | UserSettingsAvgAggregateOutputType | No |
| _sum | UserSettingsSumAggregateOutputType | No |
| _min | UserSettingsMinAggregateOutputType | No |
| _max | UserSettingsMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| language | Language | Yes |
| time_format | TimeFormat | Yes |
| date_format | DateFormat | Yes |
| timezone | Timezone | Yes |
| theme | Theme | No |
| email_notifications | Boolean | Yes |
| phone_notification | Boolean | Yes |
| push_notifications | Boolean | Yes |
| two_factor_auth | Boolean | No |
| login_record_id | Int | Yes |
| high_contrast_mode | Boolean | No |
| in_app_notifications | Boolean | No |
| key_board_shortcut | Boolean | No |
| notification_frequency | String | No |
| notification_sound | String | No |
| notification_vibrate | Boolean | No |
| password_reset | Boolean | No |
| version | String | Yes |
| security_question | Int | No |
| _count | UserSettingsCountAggregateOutputType | No |
| _avg | UserSettingsAvgAggregateOutputType | No |
| _sum | UserSettingsSumAggregateOutputType | No |
| _min | UserSettingsMinAggregateOutputType | No |
| _max | UserSettingsMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | VersionCountAggregateOutputType | No |
| _avg | VersionAvgAggregateOutputType | No |
| _sum | VersionSumAggregateOutputType | No |
| _min | VersionMinAggregateOutputType | No |
| _max | VersionMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| slug | String | Yes |
| title | String | Yes |
| description | String | No |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| version | String | No |
| _count | VersionCountAggregateOutputType | No |
| _avg | VersionAvgAggregateOutputType | No |
| _sum | VersionSumAggregateOutputType | No |
| _min | VersionMinAggregateOutputType | No |
| _max | VersionMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| count | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| userId | Int | Yes |
| type | Int | Yes |
| provider | Int | Yes |
| providerAccountId | Int | Yes |
| refresh_token | Int | Yes |
| access_token | Int | Yes |
| expires_at | Int | Yes |
| scope | Int | Yes |
| id_token | Int | Yes |
| session_state | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| expires_at | Float | No |
| Name | Type | Nullable |
|---|---|---|
| expires_at | BigInt | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | No |
| type | String | No |
| provider | String | No |
| providerAccountId | String | No |
| refresh_token | String | No |
| access_token | String | No |
| expires_at | BigInt | No |
| scope | String | No |
| id_token | String | No |
| session_state | String | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | No |
| type | String | No |
| provider | String | No |
| providerAccountId | String | No |
| refresh_token | String | No |
| access_token | String | No |
| expires_at | BigInt | No |
| scope | String | No |
| id_token | String | No |
| session_state | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| created_at | Int | Yes |
| updated_at | Int | Yes |
| vehicle_number | Int | Yes |
| ambulance_type | Int | Yes |
| person | Int | Yes |
| version | Int | Yes |
| organization | Int | Yes |
| equipment | Int | Yes |
| contact | Int | Yes |
| color | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| person | Float | No |
| organization | Float | No |
| contact | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| person | Int | No |
| organization | Int | No |
| contact | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| vehicle_number | String | No |
| ambulance_type | String | No |
| person | Int | No |
| version | String | No |
| organization | Int | No |
| contact | Int | No |
| color | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| vehicle_number | String | No |
| ambulance_type | String | No |
| person | Int | No |
| version | String | No |
| organization | Int | No |
| contact | Int | No |
| color | String | No |
| Name | Type | Nullable |
|---|---|---|
| BloodDonation | Int | Yes |
| Contact_Contact_blood_centerToBloodCenter | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| created_at | Int | Yes |
| updated_at | Int | Yes |
| established_at | Int | Yes |
| version | Int | Yes |
| founder | Int | Yes |
| contact | Int | Yes |
| title | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| founder | Float | No |
| contact | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| founder | Int | No |
| contact | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| established_at | DateTime | No |
| version | String | No |
| founder | Int | No |
| contact | Int | No |
| title | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| established_at | DateTime | No |
| version | String | No |
| founder | Int | No |
| contact | Int | No |
| title | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| donor_id | Int | Yes |
| organization_id | Int | Yes |
| amount | Int | Yes |
| version | Int | Yes |
| donated_at | Int | Yes |
| referred_by | Int | Yes |
| test_done | Int | Yes |
| bags | Int | Yes |
| media_done | Int | Yes |
| media_used | Int | Yes |
| incubation | Int | Yes |
| note | Int | Yes |
| created_at | Int | Yes |
| updated_at | Int | Yes |
| cabin_no | Int | Yes |
| reg_no | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| donor_id | Float | No |
| organization_id | Float | No |
| amount | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| donor_id | Int | No |
| organization_id | Int | No |
| amount | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| donor_id | Int | No |
| organization_id | Int | No |
| amount | Int | No |
| version | String | No |
| donated_at | DateTime | No |
| referred_by | String | No |
| media_done | String | No |
| media_used | String | No |
| incubation | String | No |
| note | String | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| cabin_no | String | No |
| reg_no | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| donor_id | Int | No |
| organization_id | Int | No |
| amount | Int | No |
| version | String | No |
| donated_at | DateTime | No |
| referred_by | String | No |
| media_done | String | No |
| media_used | String | No |
| incubation | String | No |
| note | String | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| cabin_no | String | No |
| reg_no | String | No |
| Name | Type | Nullable |
|---|---|---|
| Contact_Contact_clubToClub | Int | Yes |
| Member | Int | Yes |
| Organization | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| created_at | Int | Yes |
| updated_at | Int | Yes |
| name | Int | Yes |
| established_at | Int | Yes |
| contact | Int | Yes |
| version | Int | Yes |
| chairman | Int | Yes |
| founder | Int | Yes |
| vice_chairman | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| contact | Float | No |
| chairman | Float | No |
| founder | Float | No |
| vice_chairman | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| contact | Int | No |
| chairman | Int | No |
| founder | Int | No |
| vice_chairman | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| name | String | No |
| established_at | DateTime | No |
| contact | Int | No |
| version | String | No |
| chairman | Int | No |
| founder | Int | No |
| vice_chairman | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| name | String | No |
| established_at | DateTime | No |
| contact | Int | No |
| version | String | No |
| chairman | Int | No |
| founder | Int | No |
| vice_chairman | Int | No |
| Name | Type | Nullable |
|---|---|---|
| Ambulance | Int | Yes |
| BloodCenter_BloodCenter_contactToContact | Int | Yes |
| Club_Club_contactToContact | Int | Yes |
| Hospital_Hospital_contactToContact | Int | Yes |
| Person_Person_contact_idToContact | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| created_at | Int | Yes |
| updated_at | Int | Yes |
| address_line | Int | Yes |
| address_line_1 | Int | Yes |
| state | Int | Yes |
| city | Int | Yes |
| zip | Int | Yes |
| phone | Int | Yes |
| phone_1 | Int | Yes |
| fax | Int | Yes |
| Int | Yes | |
| email_1 | Int | Yes |
| website | Int | Yes |
| social_media | Int | Yes |
| version | Int | Yes |
| country | Int | Yes |
| person | Int | Yes |
| club | Int | Yes |
| blood_center | Int | Yes |
| donation | Int | Yes |
| hospital | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| person | Float | No |
| club | Float | No |
| blood_center | Float | No |
| donation | Float | No |
| hospital | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| person | Int | No |
| club | Int | No |
| blood_center | Int | No |
| donation | Int | No |
| hospital | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| address_line | String | No |
| address_line_1 | String | No |
| state | String | No |
| city | String | No |
| zip | String | No |
| phone | String | No |
| phone_1 | String | No |
| fax | String | No |
| String | No | |
| email_1 | String | No |
| website | String | No |
| version | String | No |
| country | String | No |
| person | Int | No |
| club | Int | No |
| blood_center | Int | No |
| donation | Int | No |
| hospital | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| address_line | String | No |
| address_line_1 | String | No |
| state | String | No |
| city | String | No |
| zip | String | No |
| phone | String | No |
| phone_1 | String | No |
| fax | String | No |
| String | No | |
| email_1 | String | No |
| website | String | No |
| version | String | No |
| country | String | No |
| person | Int | No |
| club | Int | No |
| blood_center | Int | No |
| donation | Int | No |
| hospital | Int | No |
| Name | Type | Nullable |
|---|---|---|
| Contact | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| alpha_3 | Int | Yes |
| alpha_2 | Int | Yes |
| numeric | Int | Yes |
| name | Int | Yes |
| version | Int | Yes |
| created_at | Int | Yes |
| updated_at | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| alpha_3 | String | No |
| alpha_2 | String | No |
| numeric | String | No |
| name | String | No |
| version | String | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| alpha_3 | String | No |
| alpha_2 | String | No |
| numeric | String | No |
| name | String | No |
| version | String | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| LoginRecord | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| created_at | Int | Yes |
| updated_at | Int | Yes |
| name | Int | Yes |
| mac_address | Int | Yes |
| model | Int | Yes |
| os | Int | Yes |
| os_version | Int | Yes |
| device_id | Int | Yes |
| brand | Int | Yes |
| manufacturer | Int | Yes |
| version | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| name | String | No |
| mac_address | String | No |
| model | String | No |
| os | String | No |
| os_version | String | No |
| device_id | String | No |
| brand | String | No |
| manufacturer | String | No |
| version | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| name | String | No |
| mac_address | String | No |
| model | String | No |
| os | String | No |
| os_version | String | No |
| device_id | String | No |
| brand | String | No |
| manufacturer | String | No |
| version | String | No |
| Name | Type | Nullable |
|---|---|---|
| Contact | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| created_at | Int | Yes |
| updated_at | Int | Yes |
| amount | Int | Yes |
| donated_at | Int | Yes |
| version | Int | Yes |
| person | Int | Yes |
| member | Int | Yes |
| organization | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| amount | Float | No |
| person | Float | No |
| member | Float | No |
| organization | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| amount | Int | No |
| person | Int | No |
| member | Int | No |
| organization | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| amount | Int | No |
| donated_at | DateTime | No |
| version | String | No |
| person | Int | No |
| member | Int | No |
| organization | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| amount | Int | No |
| donated_at | DateTime | No |
| version | String | No |
| person | Int | No |
| member | Int | No |
| organization | Int | No |
| Name | Type | Nullable |
|---|---|---|
| Contact_Contact_hospitalToHospital | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| created_at | Int | Yes |
| updated_at | Int | Yes |
| name | Int | Yes |
| founded_at | Int | Yes |
| accreditation | Int | Yes |
| bed_count | Int | Yes |
| emergency_room | Int | Yes |
| services | Int | Yes |
| specialties | Int | Yes |
| rating | Int | Yes |
| facility_type | Int | Yes |
| ownership | Int | Yes |
| insurance_accepted | Int | Yes |
| operating_hours | Int | Yes |
| infrastructure | Int | Yes |
| security_controls | Int | Yes |
| version | Int | Yes |
| location | Int | Yes |
| contact | Int | Yes |
| founder | Int | Yes |
| director | Int | Yes |
| chairman | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| bed_count | Float | No |
| rating | Float | No |
| location | Float | No |
| contact | Float | No |
| founder | Float | No |
| director | Float | No |
| chairman | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| bed_count | Int | No |
| rating | Float | No |
| location | Int | No |
| contact | Int | No |
| founder | Int | No |
| director | Int | No |
| chairman | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| name | String | No |
| founded_at | DateTime | No |
| accreditation | String | No |
| bed_count | Int | No |
| emergency_room | Boolean | No |
| rating | Float | No |
| facility_type | FacilityType | No |
| ownership | String | No |
| insurance_accepted | String | No |
| operating_hours | String | No |
| infrastructure | String | No |
| security_controls | String | No |
| version | String | No |
| location | Int | No |
| contact | Int | No |
| founder | Int | No |
| director | Int | No |
| chairman | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| name | String | No |
| founded_at | DateTime | No |
| accreditation | String | No |
| bed_count | Int | No |
| emergency_room | Boolean | No |
| rating | Float | No |
| facility_type | FacilityType | No |
| ownership | String | No |
| insurance_accepted | String | No |
| operating_hours | String | No |
| infrastructure | String | No |
| security_controls | String | No |
| version | String | No |
| location | Int | No |
| contact | Int | No |
| founder | Int | No |
| director | Int | No |
| chairman | Int | No |
| Name | Type | Nullable |
|---|---|---|
| Hospital | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| latitude | Int | Yes |
| longitude | Int | Yes |
| version | Int | Yes |
| created_at | Int | Yes |
| updated_at | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| latitude | Float | No |
| longitude | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| latitude | Float | No |
| longitude | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| latitude | Float | No |
| longitude | Float | No |
| version | String | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| latitude | Float | No |
| longitude | Float | No |
| version | String | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| OrganizationSettings | Int | Yes |
| User | Int | Yes |
| UserSettings | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| user | Int | Yes |
| ip_address | Int | Yes |
| user_agent | Int | Yes |
| login_status | Int | Yes |
| session_id | Int | Yes |
| location | Int | Yes |
| authentication | Int | Yes |
| security_tokens | Int | Yes |
| logout_timestamp | Int | Yes |
| version | Int | Yes |
| created_at | Int | Yes |
| updated_at | Int | Yes |
| devices | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| user | Float | No |
| devices | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| user | Int | No |
| devices | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| user | Int | No |
| ip_address | String | No |
| user_agent | String | No |
| login_status | String | No |
| session_id | String | No |
| location | String | No |
| authentication | AuthenticationMethod | No |
| security_tokens | String | No |
| logout_timestamp | DateTime | No |
| version | String | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| devices | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| user | Int | No |
| ip_address | String | No |
| user_agent | String | No |
| login_status | String | No |
| session_id | String | No |
| location | String | No |
| authentication | AuthenticationMethod | No |
| security_tokens | String | No |
| logout_timestamp | DateTime | No |
| version | String | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| devices | Int | No |
| Name | Type | Nullable |
|---|---|---|
| Donation | Int | Yes |
| Request | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| created_at | Int | Yes |
| updated_at | Int | Yes |
| version | Int | Yes |
| allergies | Int | Yes |
| complications | Int | Yes |
| medications | Int | Yes |
| blood_disorders | Int | Yes |
| club_id | Int | Yes |
| infectious_diseases | Int | Yes |
| last_blood_donation | Int | Yes |
| medical_conditions | Int | Yes |
| person_id | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| club_id | Float | No |
| person_id | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| club_id | Int | No |
| person_id | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| version | String | No |
| allergies | String | No |
| complications | String | No |
| medications | String | No |
| blood_disorders | String | No |
| club_id | Int | No |
| infectious_diseases | String | No |
| last_blood_donation | DateTime | No |
| medical_conditions | String | No |
| person_id | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| version | String | No |
| allergies | String | No |
| complications | String | No |
| medications | String | No |
| blood_disorders | String | No |
| club_id | Int | No |
| infectious_diseases | String | No |
| last_blood_donation | DateTime | No |
| medical_conditions | String | No |
| person_id | Int | No |
| Name | Type | Nullable |
|---|---|---|
| Ambulance | Int | Yes |
| Donation | Int | Yes |
| Support | Int | Yes |
| SupportMessage | Int | Yes |
| Team | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| created_at | Int | Yes |
| updated_at | Int | Yes |
| org_type | Int | Yes |
| org_id | Int | Yes |
| Volunteer | Int | Yes |
| personId | Int | Yes |
| organizationSettingsId | Int | Yes |
| clubId | Int | Yes |
| version | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| org_id | Float | No |
| personId | Float | No |
| organizationSettingsId | Float | No |
| clubId | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| org_id | Int | No |
| personId | Int | No |
| organizationSettingsId | Int | No |
| clubId | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| org_type | OrgType | No |
| org_id | Int | No |
| personId | Int | No |
| organizationSettingsId | Int | No |
| clubId | Int | No |
| version | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| org_type | OrgType | No |
| org_id | Int | No |
| personId | Int | No |
| organizationSettingsId | Int | No |
| clubId | Int | No |
| version | String | No |
| Name | Type | Nullable |
|---|---|---|
| Organization | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| created_at | Int | Yes |
| updated_at | Int | Yes |
| language | Int | Yes |
| time_format | Int | Yes |
| date_format | Int | Yes |
| timezone | Int | Yes |
| theme | Int | Yes |
| email_notifications | Int | Yes |
| phone_notification | Int | Yes |
| push_notifications | Int | Yes |
| two_factor_auth | Int | Yes |
| loginRecordId | Int | Yes |
| accountDeactivation | Int | Yes |
| avatar | Int | Yes |
| clearBrowsingData | Int | Yes |
| contactSupportLink | Int | Yes |
| dataRetentionDays | Int | Yes |
| dataSharing | Int | Yes |
| helpCenterLink | Int | Yes |
| high_contrast_mode | Int | Yes |
| in_app_notifications | Int | Yes |
| key_board_shortcut | Int | Yes |
| notification_frequency | Int | Yes |
| notification_sound | Int | Yes |
| notification_vibrate | Int | Yes |
| password_reset | Int | Yes |
| security_answer | Int | Yes |
| security_question | Int | Yes |
| username | Int | Yes |
| version | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| loginRecordId | Float | No |
| dataRetentionDays | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| loginRecordId | Int | No |
| dataRetentionDays | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| language | Language | No |
| time_format | TimeFormat | No |
| date_format | DateFormat | No |
| timezone | Timezone | No |
| theme | Theme | No |
| email_notifications | Boolean | No |
| phone_notification | Boolean | No |
| push_notifications | Boolean | No |
| two_factor_auth | Boolean | No |
| loginRecordId | Int | No |
| accountDeactivation | Boolean | No |
| avatar | String | No |
| clearBrowsingData | Boolean | No |
| contactSupportLink | String | No |
| dataRetentionDays | Int | No |
| dataSharing | Boolean | No |
| helpCenterLink | String | No |
| high_contrast_mode | Boolean | No |
| in_app_notifications | Boolean | No |
| key_board_shortcut | Boolean | No |
| notification_frequency | String | No |
| notification_sound | String | No |
| notification_vibrate | Boolean | No |
| password_reset | Boolean | No |
| security_answer | String | No |
| security_question | String | No |
| username | String | No |
| version | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| language | Language | No |
| time_format | TimeFormat | No |
| date_format | DateFormat | No |
| timezone | Timezone | No |
| theme | Theme | No |
| email_notifications | Boolean | No |
| phone_notification | Boolean | No |
| push_notifications | Boolean | No |
| two_factor_auth | Boolean | No |
| loginRecordId | Int | No |
| accountDeactivation | Boolean | No |
| avatar | String | No |
| clearBrowsingData | Boolean | No |
| contactSupportLink | String | No |
| dataRetentionDays | Int | No |
| dataSharing | Boolean | No |
| helpCenterLink | String | No |
| high_contrast_mode | Boolean | No |
| in_app_notifications | Boolean | No |
| key_board_shortcut | Boolean | No |
| notification_frequency | String | No |
| notification_sound | String | No |
| notification_vibrate | Boolean | No |
| password_reset | Boolean | No |
| security_answer | String | No |
| security_question | String | No |
| username | String | No |
| version | String | No |
| Name | Type | Nullable |
|---|---|---|
| Ambulance | Int | Yes |
| BloodCenter | Int | Yes |
| BloodDonation | Int | Yes |
| Club_Club_chairmanToPerson | Int | Yes |
| Club_Club_founderToPerson | Int | Yes |
| Club_Club_vice_chairmanToPerson | Int | Yes |
| Contact_Contact_personToPerson | Int | Yes |
| Donation | Int | Yes |
| Member | Int | Yes |
| Organization | Int | Yes |
| Request | Int | Yes |
| SupportMessage | Int | Yes |
| Team_Team_membersToPerson | Int | Yes |
| User | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| created_at | Int | Yes |
| updated_at | Int | Yes |
| first_name | Int | Yes |
| last_name | Int | Yes |
| father_name | Int | Yes |
| mother_name | Int | Yes |
| profession | Int | Yes |
| dob | Int | Yes |
| gender | Int | Yes |
| version | Int | Yes |
| avatar | Int | Yes |
| contact_id | Int | Yes |
| teamId | Int | Yes |
| bid | Int | Yes |
| driving | Int | Yes |
| nid | Int | Yes |
| passport | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| contact_id | Float | No |
| teamId | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| contact_id | Int | No |
| teamId | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| first_name | String | No |
| last_name | String | No |
| father_name | String | No |
| mother_name | String | No |
| profession | String | No |
| dob | DateTime | No |
| gender | Gender | No |
| version | String | No |
| avatar | String | No |
| contact_id | Int | No |
| teamId | Int | No |
| bid | String | No |
| driving | String | No |
| nid | String | No |
| passport | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| first_name | String | No |
| last_name | String | No |
| father_name | String | No |
| mother_name | String | No |
| profession | String | No |
| dob | DateTime | No |
| gender | Gender | No |
| version | String | No |
| avatar | String | No |
| contact_id | Int | No |
| teamId | Int | No |
| bid | String | No |
| driving | String | No |
| nid | String | No |
| passport | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| created_at | Int | Yes |
| updated_at | Int | Yes |
| health_issue | Int | Yes |
| blood_group | Int | Yes |
| quantity | Int | Yes |
| donation_type | Int | Yes |
| datetime | Int | Yes |
| hospital_name | Int | Yes |
| hospital_address | Int | Yes |
| hospital_phone | Int | Yes |
| hospital_email | Int | Yes |
| version | Int | Yes |
| memberId | Int | Yes |
| personId | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| quantity | Float | No |
| memberId | Float | No |
| personId | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| quantity | Int | No |
| memberId | Int | No |
| personId | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| health_issue | String | No |
| blood_group | BloodGroup | No |
| quantity | Int | No |
| donation_type | String | No |
| datetime | DateTime | No |
| hospital_name | String | No |
| hospital_address | String | No |
| hospital_phone | String | No |
| hospital_email | String | No |
| version | String | No |
| memberId | Int | No |
| personId | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| health_issue | String | No |
| blood_group | BloodGroup | No |
| quantity | Int | No |
| donation_type | String | No |
| datetime | DateTime | No |
| hospital_name | String | No |
| hospital_address | String | No |
| hospital_phone | String | No |
| hospital_email | String | No |
| version | String | No |
| memberId | Int | No |
| personId | Int | No |
| Name | Type | Nullable |
|---|---|---|
| UserSettings | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| question | Int | Yes |
| answer | Int | Yes |
| userId | Int | Yes |
| created_at | Int | Yes |
| updated_at | Int | Yes |
| version | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| userId | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| userId | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| question | String | No |
| answer | String | No |
| userId | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| version | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| question | String | No |
| answer | String | No |
| userId | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| version | String | No |
| Name | Type | Nullable |
|---|---|---|
| User | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| Int | Yes | |
| Int | Yes | |
| Int | Yes | |
| userId | Int | Yes |
| created_at | Int | Yes |
| updated_at | Int | Yes |
| version | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| userId | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| userId | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| String | No | |
| String | No | |
| String | No | |
| userId | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| version | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| String | No | |
| String | No | |
| String | No | |
| userId | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| version | String | No |
| Name | Type | Nullable |
|---|---|---|
| SupportMessage | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| created_at | Int | Yes |
| updated_at | Int | Yes |
| version | Int | Yes |
| organization | Int | Yes |
| messages | Int | Yes |
| status | Int | Yes |
| priority | Int | Yes |
| subject | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| organization | Float | No |
| priority | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| organization | Int | No |
| priority | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| version | String | No |
| organization | Int | No |
| messages | String | No |
| status | String | No |
| priority | Int | No |
| subject | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| version | String | No |
| organization | Int | No |
| messages | String | No |
| status | String | No |
| priority | Int | No |
| subject | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| created_at | Int | Yes |
| updated_at | Int | Yes |
| organization | Int | Yes |
| support | Int | Yes |
| message | Int | Yes |
| author | Int | Yes |
| version | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| organization | Float | No |
| support | Float | No |
| author | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| organization | Int | No |
| support | Int | No |
| author | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| organization | Int | No |
| support | Int | No |
| message | String | No |
| author | Int | No |
| version | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| organization | Int | No |
| support | Int | No |
| message | String | No |
| author | Int | No |
| version | String | No |
| Name | Type | Nullable |
|---|---|---|
| Person_Person_teamIdToTeam | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| created_at | Int | Yes |
| updated_at | Int | Yes |
| started_at | Int | Yes |
| ended_at | Int | Yes |
| organization | Int | Yes |
| version | Int | Yes |
| members | Int | Yes |
| status | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| organization | Float | No |
| members | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| organization | Int | No |
| members | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| started_at | DateTime | No |
| ended_at | DateTime | No |
| organization | Int | No |
| version | String | No |
| members | Int | No |
| status | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| started_at | DateTime | No |
| ended_at | DateTime | No |
| organization | Int | No |
| version | String | No |
| members | Int | No |
| status | String | No |
| Name | Type | Nullable |
|---|---|---|
| User | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| is_enabled | Int | Yes |
| secret_key | Int | Yes |
| user_id | Int | Yes |
| created_at | Int | Yes |
| updated_at | Int | Yes |
| version | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| user_id | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| user_id | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| is_enabled | Boolean | No |
| secret_key | String | No |
| user_id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| version | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| is_enabled | Boolean | No |
| secret_key | String | No |
| user_id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| version | String | No |
| Name | Type | Nullable |
|---|---|---|
| SecurityQuestion | Int | Yes |
| UserRole | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| username | Int | Yes |
| Int | Yes | |
| password | Int | Yes |
| status | Int | Yes |
| ip | Int | Yes |
| two_factor_auth | Int | Yes |
| social_login | Int | Yes |
| logins | Int | Yes |
| person | Int | Yes |
| settings | Int | Yes |
| version | Int | Yes |
| created_at | Int | Yes |
| updated_at | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| two_factor_auth | Float | No |
| social_login | Float | No |
| logins | Float | No |
| person | Float | No |
| settings | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| two_factor_auth | Int | No |
| social_login | Int | No |
| logins | Int | No |
| person | Int | No |
| settings | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| username | String | No |
| String | No | |
| password | String | No |
| status | AccountStatus | No |
| ip | String | No |
| two_factor_auth | Int | No |
| social_login | Int | No |
| logins | Int | No |
| person | Int | No |
| settings | Int | No |
| version | String | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| username | String | No |
| String | No | |
| password | String | No |
| status | AccountStatus | No |
| ip | String | No |
| two_factor_auth | Int | No |
| social_login | Int | No |
| logins | Int | No |
| person | Int | No |
| settings | Int | No |
| version | String | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| name | Int | Yes |
| user_id | Int | Yes |
| created_at | Int | Yes |
| updated_at | Int | Yes |
| version | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| user_id | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| user_id | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| user_id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| version | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| user_id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| version | String | No |
| Name | Type | Nullable |
|---|---|---|
| User | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| created_at | Int | Yes |
| updated_at | Int | Yes |
| language | Int | Yes |
| time_format | Int | Yes |
| date_format | Int | Yes |
| timezone | Int | Yes |
| theme | Int | Yes |
| email_notifications | Int | Yes |
| phone_notification | Int | Yes |
| push_notifications | Int | Yes |
| two_factor_auth | Int | Yes |
| login_record_id | Int | Yes |
| high_contrast_mode | Int | Yes |
| in_app_notifications | Int | Yes |
| key_board_shortcut | Int | Yes |
| notification_frequency | Int | Yes |
| notification_sound | Int | Yes |
| notification_vibrate | Int | Yes |
| password_reset | Int | Yes |
| version | Int | Yes |
| security_question | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| login_record_id | Float | No |
| security_question | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| login_record_id | Int | No |
| security_question | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| language | Language | No |
| time_format | TimeFormat | No |
| date_format | DateFormat | No |
| timezone | Timezone | No |
| theme | Theme | No |
| email_notifications | Boolean | No |
| phone_notification | Boolean | No |
| push_notifications | Boolean | No |
| two_factor_auth | Boolean | No |
| login_record_id | Int | No |
| high_contrast_mode | Boolean | No |
| in_app_notifications | Boolean | No |
| key_board_shortcut | Boolean | No |
| notification_frequency | String | No |
| notification_sound | String | No |
| notification_vibrate | Boolean | No |
| password_reset | Boolean | No |
| version | String | No |
| security_question | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| language | Language | No |
| time_format | TimeFormat | No |
| date_format | DateFormat | No |
| timezone | Timezone | No |
| theme | Theme | No |
| email_notifications | Boolean | No |
| phone_notification | Boolean | No |
| push_notifications | Boolean | No |
| two_factor_auth | Boolean | No |
| login_record_id | Int | No |
| high_contrast_mode | Boolean | No |
| in_app_notifications | Boolean | No |
| key_board_shortcut | Boolean | No |
| notification_frequency | String | No |
| notification_sound | String | No |
| notification_vibrate | Boolean | No |
| password_reset | Boolean | No |
| version | String | No |
| security_question | Int | No |
| Name | Type | Nullable |
|---|---|---|
| Ambulance | Int | Yes |
| BloodCenter | Int | Yes |
| BloodDonation | Int | Yes |
| Club | Int | Yes |
| Contact | Int | Yes |
| Country | Int | Yes |
| Device | Int | Yes |
| Donation | Int | Yes |
| Hospital | Int | Yes |
| Location | Int | Yes |
| LoginRecord | Int | Yes |
| Member | Int | Yes |
| Organization | Int | Yes |
| OrganizationSettings | Int | Yes |
| Person | Int | Yes |
| Request | Int | Yes |
| SecurityQuestion | Int | Yes |
| SocialMediaLinks | Int | Yes |
| Support | Int | Yes |
| SupportMessage | Int | Yes |
| Team | Int | Yes |
| TwoFactorAuth | Int | Yes |
| User | Int | Yes |
| UserRole | Int | Yes |
| UserSettings | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| slug | Int | Yes |
| title | Int | Yes |
| description | Int | Yes |
| created_at | Int | Yes |
| updated_at | Int | Yes |
| version | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| slug | String | No |
| title | String | No |
| description | String | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| version | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| slug | String | No |
| title | String | No |
| description | String | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| version | String | No |